diff options
| author | Mike Pall <mike> | 2010-01-09 14:28:11 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2010-01-09 14:28:11 +0100 |
| commit | 4d9be5b8f8b4176a95c122b2a4c7cfcaf6bf676a (patch) | |
| tree | 444bdb55aa0465d080ca8694a9cf735c081a7424 /dynasm | |
| parent | c31ac26fb9803d4b09c27668b7c2d9a01385c9ba (diff) | |
| download | luajit-4d9be5b8f8b4176a95c122b2a4c7cfcaf6bf676a.tar.gz luajit-4d9be5b8f8b4176a95c122b2a4c7cfcaf6bf676a.tar.bz2 luajit-4d9be5b8f8b4176a95c122b2a4c7cfcaf6bf676a.zip | |
Bump all copyright dates to 2010.
Diffstat (limited to 'dynasm')
| -rw-r--r-- | dynasm/dasm_proto.h | 2 | ||||
| -rw-r--r-- | dynasm/dasm_x64.lua | 2 | ||||
| -rw-r--r-- | dynasm/dasm_x86.h | 2 | ||||
| -rw-r--r-- | dynasm/dasm_x86.lua | 4 | ||||
| -rw-r--r-- | dynasm/dynasm.lua | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/dynasm/dasm_proto.h b/dynasm/dasm_proto.h index 94d9a9e2..3e77f70b 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-2009 Mike Pall. All rights reserved. | 3 | ** Copyright (C) 2005-2010 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_x64.lua b/dynasm/dasm_x64.lua index cf31258a..348543c4 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-2009 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2010 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 dab33e5a..a1f08896 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-2009 Mike Pall. All rights reserved. | 3 | ** Copyright (C) 2005-2010 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 26a52bbd..1b83443f 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-2009 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2010 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 | ||
| @@ -13,7 +13,7 @@ local _info = { | |||
| 13 | description = "DynASM x86/x64 module", | 13 | description = "DynASM x86/x64 module", |
| 14 | version = "1.2.1", | 14 | version = "1.2.1", |
| 15 | vernum = 10201, | 15 | vernum = 10201, |
| 16 | release = "2009-12-13", | 16 | release = "2010-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 3fd344da..a437ffa2 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-2009 Mike Pall. All rights reserved. | 5 | -- Copyright (C) 2005-2010 Mike Pall. All rights reserved. |
| 6 | -- See below for full copyright notice. | 6 | -- See below for full copyright notice. |
| 7 | ------------------------------------------------------------------------------ | 7 | ------------------------------------------------------------------------------ |
| 8 | 8 | ||
| @@ -12,12 +12,12 @@ local _info = { | |||
| 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.1", |
| 14 | vernum = 10201, | 14 | vernum = 10201, |
| 15 | release = "2009-04-16", | 15 | release = "2010-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 = [[ |
| 20 | Copyright (C) 2005-2009 Mike Pall. All rights reserved. | 20 | Copyright (C) 2005-2010 Mike Pall. All rights reserved. |
| 21 | 21 | ||
| 22 | Permission is hereby granted, free of charge, to any person obtaining | 22 | Permission is hereby granted, free of charge, to any person obtaining |
| 23 | a copy of this software and associated documentation files (the | 23 | a copy of this software and associated documentation files (the |
