diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bc.lua | 2 | ||||
-rw-r--r-- | lib/bcsave.lua | 2 | ||||
-rw-r--r-- | lib/dis_arm.lua | 2 | ||||
-rw-r--r-- | lib/dis_ppc.lua | 2 | ||||
-rw-r--r-- | lib/dis_x64.lua | 2 | ||||
-rw-r--r-- | lib/dis_x86.lua | 2 | ||||
-rw-r--r-- | lib/dump.lua | 2 | ||||
-rw-r--r-- | lib/v.lua | 2 |
8 files changed, 8 insertions, 8 deletions
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT bytecode listing module. | 2 | -- LuaJIT bytecode listing module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/lib/bcsave.lua b/lib/bcsave.lua index 1783014f..7ac0ce35 100644 --- a/lib/bcsave.lua +++ b/lib/bcsave.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT module to save/list bytecode. | 2 | -- LuaJIT module to save/list bytecode. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
diff --git a/lib/dis_arm.lua b/lib/dis_arm.lua index c2d1408f..0fcd1bed 100644 --- a/lib/dis_arm.lua +++ b/lib/dis_arm.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT ARM disassembler module. | 2 | -- LuaJIT ARM disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2010 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/lib/dis_ppc.lua b/lib/dis_ppc.lua index 79b306d5..ad8599fc 100644 --- a/lib/dis_ppc.lua +++ b/lib/dis_ppc.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT PPC disassembler module. | 2 | -- LuaJIT PPC disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2010 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT/X license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/lib/dis_x64.lua b/lib/dis_x64.lua index 8c9cb4fa..d95d7ded 100644 --- a/lib/dis_x64.lua +++ b/lib/dis_x64.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT x64 disassembler wrapper module. | 2 | -- LuaJIT x64 disassembler wrapper module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This module just exports the 64 bit functions from the combined | 7 | -- This module just exports the 64 bit functions from the combined |
diff --git a/lib/dis_x86.lua b/lib/dis_x86.lua index d9a1f321..5aeeb449 100644 --- a/lib/dis_x86.lua +++ b/lib/dis_x86.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT x86/x64 disassembler module. | 2 | -- LuaJIT x86/x64 disassembler module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- This is a helper module used by the LuaJIT machine code dumper module. | 7 | -- This is a helper module used by the LuaJIT machine code dumper module. |
diff --git a/lib/dump.lua b/lib/dump.lua index 0f0e9058..37c06502 100644 --- a/lib/dump.lua +++ b/lib/dump.lua | |||
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- LuaJIT compiler dump module. | 2 | -- LuaJIT compiler dump module. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |
@@ -1,7 +1,7 @@ | |||
1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
2 | -- Verbose mode of the LuaJIT compiler. | 2 | -- Verbose mode of the LuaJIT compiler. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2005-2011 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. |
5 | -- Released under the MIT license. See Copyright Notice in luajit.h | 5 | -- Released under the MIT license. See Copyright Notice in luajit.h |
6 | ---------------------------------------------------------------------------- | 6 | ---------------------------------------------------------------------------- |
7 | -- | 7 | -- |