aboutsummaryrefslogtreecommitdiff
path: root/dynasm
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-09 17:12:53 +0100
committerMike Pall <mike>2011-01-09 17:12:53 +0100
commit06f99fc3dfa5da1fb9de7210b8a0ce772745a375 (patch)
tree6465ff3fc3b4e0fd82ac04a6743f81684f60a4ab /dynasm
parent4c0330a8b114ddb4196c92d049a3b9337cb73588 (diff)
downloadluajit-06f99fc3dfa5da1fb9de7210b8a0ce772745a375.tar.gz
luajit-06f99fc3dfa5da1fb9de7210b8a0ce772745a375.tar.bz2
luajit-06f99fc3dfa5da1fb9de7210b8a0ce772745a375.zip
Bump copyright date to 2011.
Diffstat (limited to 'dynasm')
-rw-r--r--dynasm/dasm_ppc.h2
-rw-r--r--dynasm/dasm_ppc.lua8
-rw-r--r--dynasm/dasm_proto.h6
-rw-r--r--dynasm/dasm_x64.lua2
-rw-r--r--dynasm/dasm_x86.h2
-rw-r--r--dynasm/dasm_x86.lua8
-rw-r--r--dynasm/dynasm.lua10
7 files changed, 19 insertions, 19 deletions
diff --git a/dynasm/dasm_ppc.h b/dynasm/dasm_ppc.h
index 85aeccd8..e928ffed 100644
--- a/dynasm/dasm_ppc.h
+++ b/dynasm/dasm_ppc.h
@@ -1,6 +1,6 @@
1/* 1/*
2** DynASM PPC encoding engine. 2** DynASM PPC encoding engine.
3** Copyright (C) 2005-2010 Mike Pall. All rights reserved. 3** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
4** Released under the MIT/X license. See dynasm.lua for full copyright notice. 4** Released under the MIT/X license. See dynasm.lua for full copyright notice.
5*/ 5*/
6 6
diff --git a/dynasm/dasm_ppc.lua b/dynasm/dasm_ppc.lua
index d18fae48..01376f76 100644
--- a/dynasm/dasm_ppc.lua
+++ b/dynasm/dasm_ppc.lua
@@ -1,7 +1,7 @@
1------------------------------------------------------------------------------ 1------------------------------------------------------------------------------
2-- DynASM PPC module. 2-- DynASM PPC module.
3-- 3--
4-- Copyright (C) 2005-2010 Mike Pall. All rights reserved. 4-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
5-- See dynasm.lua for full copyright notice. 5-- See dynasm.lua for full copyright notice.
6------------------------------------------------------------------------------ 6------------------------------------------------------------------------------
7 7
@@ -9,9 +9,9 @@
9local _info = { 9local _info = {
10 arch = "ppc", 10 arch = "ppc",
11 description = "DynASM PPC module", 11 description = "DynASM PPC module",
12 version = "1.2.1", 12 version = "1.2.2",
13 vernum = 10201, 13 vernum = 10202,
14 release = "2010-XX-XX", 14 release = "2011-01-09",
15 author = "Mike Pall", 15 author = "Mike Pall",
16 license = "MIT", 16 license = "MIT",
17} 17}
diff --git a/dynasm/dasm_proto.h b/dynasm/dasm_proto.h
index 114f0fb8..7d3f77f6 100644
--- a/dynasm/dasm_proto.h
+++ b/dynasm/dasm_proto.h
@@ -1,6 +1,6 @@
1/* 1/*
2** DynASM encoding engine prototypes. 2** DynASM encoding engine prototypes.
3** Copyright (C) 2005-2010 Mike Pall. All rights reserved. 3** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
4** Released under the MIT/X license. See dynasm.lua for full copyright notice. 4** Released under the MIT/X license. See dynasm.lua for full copyright notice.
5*/ 5*/
6 6
@@ -10,8 +10,8 @@
10#include <stddef.h> 10#include <stddef.h>
11#include <stdarg.h> 11#include <stdarg.h>
12 12
13#define DASM_IDENT "DynASM 1.2.1" 13#define DASM_IDENT "DynASM 1.2.2"
14#define DASM_VERSION 10201 /* 1.2.1 */ 14#define DASM_VERSION 10202 /* 1.2.2 */
15 15
16#ifndef Dst_DECL 16#ifndef Dst_DECL
17#define Dst_DECL dasm_State *Dst 17#define Dst_DECL dasm_State *Dst
diff --git a/dynasm/dasm_x64.lua b/dynasm/dasm_x64.lua
index 348543c4..73e01e91 100644
--- a/dynasm/dasm_x64.lua
+++ b/dynasm/dasm_x64.lua
@@ -1,7 +1,7 @@
1------------------------------------------------------------------------------ 1------------------------------------------------------------------------------
2-- DynASM x64 module. 2-- DynASM x64 module.
3-- 3--
4-- Copyright (C) 2005-2010 Mike Pall. All rights reserved. 4-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
5-- See dynasm.lua for full copyright notice. 5-- See dynasm.lua for full copyright notice.
6------------------------------------------------------------------------------ 6------------------------------------------------------------------------------
7-- This module just sets 64 bit mode for the combined x86/x64 module. 7-- This module just sets 64 bit mode for the combined x86/x64 module.
diff --git a/dynasm/dasm_x86.h b/dynasm/dasm_x86.h
index de542b6b..23e213cb 100644
--- a/dynasm/dasm_x86.h
+++ b/dynasm/dasm_x86.h
@@ -1,6 +1,6 @@
1/* 1/*
2** DynASM x86 encoding engine. 2** DynASM x86 encoding engine.
3** Copyright (C) 2005-2010 Mike Pall. All rights reserved. 3** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
4** Released under the MIT/X license. See dynasm.lua for full copyright notice. 4** Released under the MIT/X license. See dynasm.lua for full copyright notice.
5*/ 5*/
6 6
diff --git a/dynasm/dasm_x86.lua b/dynasm/dasm_x86.lua
index 5e12d23c..0d4bd4c3 100644
--- a/dynasm/dasm_x86.lua
+++ b/dynasm/dasm_x86.lua
@@ -1,7 +1,7 @@
1------------------------------------------------------------------------------ 1------------------------------------------------------------------------------
2-- DynASM x86/x64 module. 2-- DynASM x86/x64 module.
3-- 3--
4-- Copyright (C) 2005-2010 Mike Pall. All rights reserved. 4-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
5-- See dynasm.lua for full copyright notice. 5-- See dynasm.lua for full copyright notice.
6------------------------------------------------------------------------------ 6------------------------------------------------------------------------------
7 7
@@ -11,9 +11,9 @@ local x64 = x64
11local _info = { 11local _info = {
12 arch = x64 and "x64" or "x86", 12 arch = x64 and "x64" or "x86",
13 description = "DynASM x86/x64 module", 13 description = "DynASM x86/x64 module",
14 version = "1.2.1", 14 version = "1.2.2",
15 vernum = 10201, 15 vernum = 10202,
16 release = "2010-01-09", 16 release = "2011-01-09",
17 author = "Mike Pall", 17 author = "Mike Pall",
18 license = "MIT", 18 license = "MIT",
19} 19}
diff --git a/dynasm/dynasm.lua b/dynasm/dynasm.lua
index a437ffa2..d9dd1800 100644
--- a/dynasm/dynasm.lua
+++ b/dynasm/dynasm.lua
@@ -2,7 +2,7 @@
2-- DynASM. A dynamic assembler for code generation engines. 2-- DynASM. A dynamic assembler for code generation engines.
3-- Originally designed and implemented for LuaJIT. 3-- Originally designed and implemented for LuaJIT.
4-- 4--
5-- Copyright (C) 2005-2010 Mike Pall. All rights reserved. 5-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
6-- See below for full copyright notice. 6-- See below for full copyright notice.
7------------------------------------------------------------------------------ 7------------------------------------------------------------------------------
8 8
@@ -10,14 +10,14 @@
10local _info = { 10local _info = {
11 name = "DynASM", 11 name = "DynASM",
12 description = "A dynamic assembler for code generation engines", 12 description = "A dynamic assembler for code generation engines",
13 version = "1.2.1", 13 version = "1.2.2",
14 vernum = 10201, 14 vernum = 10202,
15 release = "2010-01-09", 15 release = "2011-01-09",
16 author = "Mike Pall", 16 author = "Mike Pall",
17 url = "http://luajit.org/dynasm.html", 17 url = "http://luajit.org/dynasm.html",
18 license = "MIT", 18 license = "MIT",
19 copyright = [[ 19 copyright = [[
20Copyright (C) 2005-2010 Mike Pall. All rights reserved. 20Copyright (C) 2005-2011 Mike Pall. All rights reserved.
21 21
22Permission is hereby granted, free of charge, to any person obtaining 22Permission is hereby granted, free of charge, to any person obtaining
23a copy of this software and associated documentation files (the 23a copy of this software and associated documentation files (the