diff options
| author | Mike Pall <mike> | 2026-01-09 17:18:03 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2026-01-09 17:18:03 +0100 |
| commit | 6e69e4731437d6876b96e843804a6ef0a671ed25 (patch) | |
| tree | b630d87267e682717625f9cfb43fa4d125a02547 /src/jit | |
| parent | 406cf69b3ae0a3ecd5ede2bb97b937b7a5d92074 (diff) | |
| download | luajit-6e69e4731437d6876b96e843804a6ef0a671ed25.tar.gz luajit-6e69e4731437d6876b96e843804a6ef0a671ed25.tar.bz2 luajit-6e69e4731437d6876b96e843804a6ef0a671ed25.zip | |
Bump copyright date.
Diffstat (limited to 'src/jit')
| -rw-r--r-- | src/jit/bc.lua | 2 | ||||
| -rw-r--r-- | src/jit/bcsave.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_arm.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_mips.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_mipsel.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_ppc.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_x64.lua | 2 | ||||
| -rw-r--r-- | src/jit/dis_x86.lua | 2 | ||||
| -rw-r--r-- | src/jit/dump.lua | 2 | ||||
| -rw-r--r-- | src/jit/v.lua | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/jit/bc.lua b/src/jit/bc.lua index cf1bd5b0..f162155d 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT bytecode listing module. | 2 | -- LuaJIT bytecode listing module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/bcsave.lua b/src/jit/bcsave.lua index be0b9c53..11b0b853 100644 --- a/src/jit/bcsave.lua +++ b/src/jit/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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dis_arm.lua b/src/jit/dis_arm.lua index 23925c24..ca8df958 100644 --- a/src/jit/dis_arm.lua +++ b/src/jit/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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dis_mips.lua b/src/jit/dis_mips.lua index 1a5f8d22..ad3dbe4d 100644 --- a/src/jit/dis_mips.lua +++ b/src/jit/dis_mips.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT MIPS disassembler module. | 2 | -- LuaJIT MIPS disassembler module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dis_mipsel.lua b/src/jit/dis_mipsel.lua index 7c2ada34..863d245c 100644 --- a/src/jit/dis_mipsel.lua +++ b/src/jit/dis_mipsel.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT MIPSEL disassembler wrapper module. | 2 | -- LuaJIT MIPSEL disassembler wrapper module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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 little-endian functions from the | 7 | -- This module just exports the little-endian functions from the |
diff --git a/src/jit/dis_ppc.lua b/src/jit/dis_ppc.lua index f0c9e831..162947ca 100644 --- a/src/jit/dis_ppc.lua +++ b/src/jit/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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dis_x64.lua b/src/jit/dis_x64.lua index d3805b3a..4db5fa1b 100644 --- a/src/jit/dis_x64.lua +++ b/src/jit/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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dis_x86.lua b/src/jit/dis_x86.lua index befeb515..7f9ada79 100644 --- a/src/jit/dis_x86.lua +++ b/src/jit/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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/dump.lua b/src/jit/dump.lua index 669aa738..5097db94 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ---------------------------------------------------------------------------- | 1 | ---------------------------------------------------------------------------- |
| 2 | -- LuaJIT compiler dump module. | 2 | -- LuaJIT compiler dump module. |
| 3 | -- | 3 | -- |
| 4 | -- Copyright (C) 2005-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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/src/jit/v.lua b/src/jit/v.lua index 2e5d1be3..43cbedff 100644 --- a/src/jit/v.lua +++ b/src/jit/v.lua | |||
| @@ -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-2025 Mike Pall. All rights reserved. | 4 | -- Copyright (C) 2005-2026 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 | -- |
