From 06f99fc3dfa5da1fb9de7210b8a0ce772745a375 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 9 Jan 2011 17:12:53 +0100 Subject: Bump copyright date to 2011. --- src/Makefile | 2 +- src/buildvm.c | 2 +- src/buildvm.h | 2 +- src/buildvm_asm.c | 2 +- src/buildvm_fold.c | 2 +- src/buildvm_lib.c | 2 +- src/buildvm_peobj.c | 2 +- src/buildvm_ppc.dasc | 2 +- src/buildvm_ppcspe.h | 4 ++-- src/buildvm_x64.h | 4 ++-- src/buildvm_x64win.h | 4 ++-- src/buildvm_x86.dasc | 2 +- src/buildvm_x86.h | 4 ++-- src/lib_aux.c | 2 +- src/lib_base.c | 2 +- src/lib_bit.c | 2 +- src/lib_debug.c | 2 +- src/lib_ffi.c | 2 +- src/lib_io.c | 2 +- src/lib_jit.c | 2 +- src/lib_math.c | 2 +- src/lib_os.c | 2 +- src/lib_package.c | 2 +- src/lib_string.c | 2 +- src/lib_table.c | 2 +- src/lj_api.c | 2 +- src/lj_arch.h | 2 +- src/lj_asm.c | 2 +- src/lj_asm.h | 2 +- src/lj_bc.c | 2 +- src/lj_bc.h | 2 +- src/lj_ccall.c | 2 +- src/lj_ccall.h | 2 +- src/lj_cconv.c | 2 +- src/lj_cconv.h | 2 +- src/lj_cdata.c | 2 +- src/lj_cdata.h | 2 +- src/lj_cparse.c | 2 +- src/lj_cparse.h | 2 +- src/lj_crecord.c | 2 +- src/lj_crecord.h | 2 +- src/lj_ctype.c | 2 +- src/lj_ctype.h | 2 +- src/lj_def.h | 2 +- src/lj_dispatch.c | 2 +- src/lj_dispatch.h | 2 +- src/lj_err.c | 2 +- src/lj_err.h | 2 +- src/lj_errmsg.h | 2 +- src/lj_ff.h | 2 +- src/lj_ffrecord.c | 2 +- src/lj_ffrecord.h | 2 +- src/lj_frame.h | 2 +- src/lj_func.c | 2 +- src/lj_func.h | 2 +- src/lj_gc.c | 2 +- src/lj_gc.h | 2 +- src/lj_gdbjit.c | 2 +- src/lj_gdbjit.h | 2 +- src/lj_ir.c | 2 +- src/lj_ir.h | 2 +- src/lj_iropt.h | 2 +- src/lj_jit.h | 2 +- src/lj_lex.c | 2 +- src/lj_lib.c | 2 +- src/lj_lib.h | 2 +- src/lj_mcode.c | 2 +- src/lj_mcode.h | 2 +- src/lj_meta.c | 2 +- src/lj_meta.h | 2 +- src/lj_obj.c | 2 +- src/lj_obj.h | 2 +- src/lj_opt_dce.c | 2 +- src/lj_opt_fold.c | 2 +- src/lj_opt_loop.c | 2 +- src/lj_opt_mem.c | 2 +- src/lj_opt_narrow.c | 2 +- src/lj_parse.c | 2 +- src/lj_parse.h | 2 +- src/lj_record.c | 2 +- src/lj_record.h | 2 +- src/lj_snap.c | 2 +- src/lj_snap.h | 2 +- src/lj_state.c | 2 +- src/lj_state.h | 2 +- src/lj_str.c | 2 +- src/lj_str.h | 2 +- src/lj_tab.c | 2 +- src/lj_tab.h | 2 +- src/lj_target.h | 2 +- src/lj_target_x86.h | 2 +- src/lj_trace.c | 2 +- src/lj_trace.h | 2 +- src/lj_traceerr.h | 2 +- src/lj_udata.c | 2 +- src/lj_udata.h | 2 +- src/lj_vm.h | 2 +- src/lj_vmevent.c | 2 +- src/lj_vmevent.h | 2 +- src/ljamalg.c | 2 +- src/luaconf.h | 2 +- src/luajit.c | 2 +- src/luajit.h | 4 ++-- src/lualib.h | 2 +- src/msvcbuild.bat | 2 +- 105 files changed, 110 insertions(+), 110 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index b925b4e5..b1197f3b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,7 +7,7 @@ # Also works with MinGW and Cygwin on Windows. # Please check msvcbuild.bat for building with MSVC on Windows. # -# Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +# Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ############################################################################## MAJVER= 2 diff --git a/src/buildvm.c b/src/buildvm.c index ddf4e0f0..98f7e95a 100644 --- a/src/buildvm.c +++ b/src/buildvm.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** This is a tool to build the hand-tuned assembler code required for ** LuaJIT's bytecode interpreter. It supports a variety of output formats diff --git a/src/buildvm.h b/src/buildvm.h index 0d1d32ad..011ada2a 100644 --- a/src/buildvm.h +++ b/src/buildvm.h @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _BUILDVM_H diff --git a/src/buildvm_asm.c b/src/buildvm_asm.c index 31ecc2e2..049d76ff 100644 --- a/src/buildvm_asm.c +++ b/src/buildvm_asm.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: Assembler source code emitter. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "buildvm.h" diff --git a/src/buildvm_fold.c b/src/buildvm_fold.c index 5f463575..33a117d7 100644 --- a/src/buildvm_fold.c +++ b/src/buildvm_fold.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: IR folding hash table generator. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "buildvm.h" diff --git a/src/buildvm_lib.c b/src/buildvm_lib.c index 0a758ebd..8d9bcea3 100644 --- a/src/buildvm_lib.c +++ b/src/buildvm_lib.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: library definition compiler. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "buildvm.h" diff --git a/src/buildvm_peobj.c b/src/buildvm_peobj.c index d06392df..b97a5b03 100644 --- a/src/buildvm_peobj.c +++ b/src/buildvm_peobj.c @@ -1,6 +1,6 @@ /* ** LuaJIT VM builder: PE object emitter. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Only used for building on Windows, since we cannot assume the presence ** of a suitable assembler. The host and target byte order must match. diff --git a/src/buildvm_ppc.dasc b/src/buildvm_ppc.dasc index 22f6da55..16cfd6ec 100644 --- a/src/buildvm_ppc.dasc +++ b/src/buildvm_ppc.dasc @@ -1,6 +1,6 @@ |// Low-level VM code for PowerPC CPUs. |// Bytecode interpreter, fast functions and helper functions. -|// Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +|// Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h | |.arch ppc |.section code_op, code_sub diff --git a/src/buildvm_ppcspe.h b/src/buildvm_ppcspe.h index 96f7e55b..82096848 100644 --- a/src/buildvm_ppcspe.h +++ b/src/buildvm_ppcspe.h @@ -1,11 +1,11 @@ /* ** This file has been pre-processed with DynASM. ** http://luajit.org/dynasm.html -** DynASM version 1.2.1, DynASM ppc version 1.2.1 +** DynASM version 1.2.2, DynASM ppc version 1.2.2 ** DO NOT EDIT! The original file is in "buildvm_ppc.dasc". */ -#if DASM_VERSION != 10201 +#if DASM_VERSION != 10202 #error "Version mismatch between DynASM and included encoding engine" #endif diff --git a/src/buildvm_x64.h b/src/buildvm_x64.h index b6756867..a80a39b8 100644 --- a/src/buildvm_x64.h +++ b/src/buildvm_x64.h @@ -1,11 +1,11 @@ /* ** This file has been pre-processed with DynASM. ** http://luajit.org/dynasm.html -** DynASM version 1.2.1, DynASM x64 version 1.2.1 +** DynASM version 1.2.2, DynASM x64 version 1.2.2 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc". */ -#if DASM_VERSION != 10201 +#if DASM_VERSION != 10202 #error "Version mismatch between DynASM and included encoding engine" #endif diff --git a/src/buildvm_x64win.h b/src/buildvm_x64win.h index 84b94f1a..19a703c8 100644 --- a/src/buildvm_x64win.h +++ b/src/buildvm_x64win.h @@ -1,11 +1,11 @@ /* ** This file has been pre-processed with DynASM. ** http://luajit.org/dynasm.html -** DynASM version 1.2.1, DynASM x64 version 1.2.1 +** DynASM version 1.2.2, DynASM x64 version 1.2.2 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc". */ -#if DASM_VERSION != 10201 +#if DASM_VERSION != 10202 #error "Version mismatch between DynASM and included encoding engine" #endif diff --git a/src/buildvm_x86.dasc b/src/buildvm_x86.dasc index d8e6a88c..e88039b9 100644 --- a/src/buildvm_x86.dasc +++ b/src/buildvm_x86.dasc @@ -1,6 +1,6 @@ |// Low-level VM code for x86 CPUs. |// Bytecode interpreter, fast functions and helper functions. -|// Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +|// Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h | |.if X64 |.arch x64 diff --git a/src/buildvm_x86.h b/src/buildvm_x86.h index a2691d37..4d1aa660 100644 --- a/src/buildvm_x86.h +++ b/src/buildvm_x86.h @@ -1,11 +1,11 @@ /* ** This file has been pre-processed with DynASM. ** http://luajit.org/dynasm.html -** DynASM version 1.2.1, DynASM x86 version 1.2.1 +** DynASM version 1.2.2, DynASM x86 version 1.2.2 ** DO NOT EDIT! The original file is in "buildvm_x86.dasc". */ -#if DASM_VERSION != 10201 +#if DASM_VERSION != 10202 #error "Version mismatch between DynASM and included encoding engine" #endif diff --git a/src/lib_aux.c b/src/lib_aux.c index 25a3b5ce..64d5c3c6 100644 --- a/src/lib_aux.c +++ b/src/lib_aux.c @@ -1,6 +1,6 @@ /* ** Auxiliary library for the Lua/C API. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major parts taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_base.c b/src/lib_base.c index 52fbeb09..47530f93 100644 --- a/src/lib_base.c +++ b/src/lib_base.c @@ -1,6 +1,6 @@ /* ** Base and coroutine library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_bit.c b/src/lib_bit.c index 0a24480f..77fd9f9a 100644 --- a/src/lib_bit.c +++ b/src/lib_bit.c @@ -1,6 +1,6 @@ /* ** Bit manipulation library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lib_bit_c diff --git a/src/lib_debug.c b/src/lib_debug.c index 5df63866..95420222 100644 --- a/src/lib_debug.c +++ b/src/lib_debug.c @@ -1,6 +1,6 @@ /* ** Debug library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_ffi.c b/src/lib_ffi.c index c80f3fb6..3c52f7f8 100644 --- a/src/lib_ffi.c +++ b/src/lib_ffi.c @@ -1,6 +1,6 @@ /* ** FFI library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lib_ffi_c diff --git a/src/lib_io.c b/src/lib_io.c index 878b98af..19528bb1 100644 --- a/src/lib_io.c +++ b/src/lib_io.c @@ -1,6 +1,6 @@ /* ** I/O library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_jit.c b/src/lib_jit.c index 4fb66d26..ed0a581a 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c @@ -1,6 +1,6 @@ /* ** JIT library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lib_jit_c diff --git a/src/lib_math.c b/src/lib_math.c index 51984ce4..3573fe47 100644 --- a/src/lib_math.c +++ b/src/lib_math.c @@ -1,6 +1,6 @@ /* ** Math library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include diff --git a/src/lib_os.c b/src/lib_os.c index a62fd3b4..81c96e15 100644 --- a/src/lib_os.c +++ b/src/lib_os.c @@ -1,6 +1,6 @@ /* ** OS library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_package.c b/src/lib_package.c index b57e51c9..45a80618 100644 --- a/src/lib_package.c +++ b/src/lib_package.c @@ -1,6 +1,6 @@ /* ** Package library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_string.c b/src/lib_string.c index 23ef70f9..27eae557 100644 --- a/src/lib_string.c +++ b/src/lib_string.c @@ -1,6 +1,6 @@ /* ** String library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lib_table.c b/src/lib_table.c index cf39f08c..66947a45 100644 --- a/src/lib_table.c +++ b/src/lib_table.c @@ -1,6 +1,6 @@ /* ** Table library. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_api.c b/src/lj_api.c index b93df344..92699078 100644 --- a/src/lj_api.c +++ b/src/lj_api.c @@ -1,6 +1,6 @@ /* ** Public Lua/C API. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_arch.h b/src/lj_arch.h index fe180e98..199e3b19 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h @@ -1,6 +1,6 @@ /* ** Target architecture selection. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ARCH_H diff --git a/src/lj_asm.c b/src/lj_asm.c index 627f5896..af8ac51b 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c @@ -1,6 +1,6 @@ /* ** IR assembler (SSA IR -> machine code). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_asm_c diff --git a/src/lj_asm.h b/src/lj_asm.h index 9df6dd5d..64240efa 100644 --- a/src/lj_asm.h +++ b/src/lj_asm.h @@ -1,6 +1,6 @@ /* ** IR assembler (SSA IR -> machine code). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ASM_H diff --git a/src/lj_bc.c b/src/lj_bc.c index 2519807c..feb8e44d 100644 --- a/src/lj_bc.c +++ b/src/lj_bc.c @@ -1,6 +1,6 @@ /* ** Bytecode instruction modes. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_bc_c diff --git a/src/lj_bc.h b/src/lj_bc.h index 101e2c15..32c8f73c 100644 --- a/src/lj_bc.h +++ b/src/lj_bc.h @@ -1,6 +1,6 @@ /* ** Bytecode instruction format. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_BC_H diff --git a/src/lj_ccall.c b/src/lj_ccall.c index 688dfc89..2f0a04dd 100644 --- a/src/lj_ccall.c +++ b/src/lj_ccall.c @@ -1,6 +1,6 @@ /* ** FFI C call handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/lj_ccall.h b/src/lj_ccall.h index a0737d04..17ed56c7 100644 --- a/src/lj_ccall.h +++ b/src/lj_ccall.h @@ -1,6 +1,6 @@ /* ** FFI C call handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CCALL_H diff --git a/src/lj_cconv.c b/src/lj_cconv.c index b123c081..be45b256 100644 --- a/src/lj_cconv.c +++ b/src/lj_cconv.c @@ -1,6 +1,6 @@ /* ** C type conversions. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/lj_cconv.h b/src/lj_cconv.h index ee16a845..acc09af9 100644 --- a/src/lj_cconv.h +++ b/src/lj_cconv.h @@ -1,6 +1,6 @@ /* ** C type conversions. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CCONV_H diff --git a/src/lj_cdata.c b/src/lj_cdata.c index 7c7eed43..fd16c86c 100644 --- a/src/lj_cdata.c +++ b/src/lj_cdata.c @@ -1,6 +1,6 @@ /* ** C data management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/lj_cdata.h b/src/lj_cdata.h index 564d827f..f1ab2153 100644 --- a/src/lj_cdata.h +++ b/src/lj_cdata.h @@ -1,6 +1,6 @@ /* ** C data management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CDATA_H diff --git a/src/lj_cparse.c b/src/lj_cparse.c index 5dc18a51..333e7a07 100644 --- a/src/lj_cparse.c +++ b/src/lj_cparse.c @@ -1,6 +1,6 @@ /* ** C declaration parser. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/lj_cparse.h b/src/lj_cparse.h index 2d2f4684..535bc461 100644 --- a/src/lj_cparse.h +++ b/src/lj_cparse.h @@ -1,6 +1,6 @@ /* ** C declaration parser. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CPARSE_H diff --git a/src/lj_crecord.c b/src/lj_crecord.c index b8b17a91..eb26bd0f 100644 --- a/src/lj_crecord.c +++ b/src/lj_crecord.c @@ -1,6 +1,6 @@ /* ** Trace recorder for C data operations. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_ffrecord_c diff --git a/src/lj_crecord.h b/src/lj_crecord.h index f0b7045b..31e3c091 100644 --- a/src/lj_crecord.h +++ b/src/lj_crecord.h @@ -1,6 +1,6 @@ /* ** Trace recorder for C data operations. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CRECORD_H diff --git a/src/lj_ctype.c b/src/lj_ctype.c index 93f63140..585039ef 100644 --- a/src/lj_ctype.c +++ b/src/lj_ctype.c @@ -1,6 +1,6 @@ /* ** C type management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include "lj_obj.h" diff --git a/src/lj_ctype.h b/src/lj_ctype.h index 437f9ae8..0c581370 100644 --- a/src/lj_ctype.h +++ b/src/lj_ctype.h @@ -1,6 +1,6 @@ /* ** C type management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_CTYPE_H diff --git a/src/lj_def.h b/src/lj_def.h index 5574524f..57946647 100644 --- a/src/lj_def.h +++ b/src/lj_def.h @@ -1,6 +1,6 @@ /* ** LuaJIT common internal definitions. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_DEF_H diff --git a/src/lj_dispatch.c b/src/lj_dispatch.c index 4eb6033b..a8aa0731 100644 --- a/src/lj_dispatch.c +++ b/src/lj_dispatch.c @@ -1,6 +1,6 @@ /* ** Instruction dispatch handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_dispatch_c diff --git a/src/lj_dispatch.h b/src/lj_dispatch.h index fda78d8e..3ba983a8 100644 --- a/src/lj_dispatch.h +++ b/src/lj_dispatch.h @@ -1,6 +1,6 @@ /* ** Instruction dispatch handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_DISPATCH_H diff --git a/src/lj_err.c b/src/lj_err.c index 562697ad..600433d4 100644 --- a/src/lj_err.c +++ b/src/lj_err.c @@ -1,6 +1,6 @@ /* ** Error handling and debugging API. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_err.h b/src/lj_err.h index cd5d4f4d..aabbf490 100644 --- a/src/lj_err.h +++ b/src/lj_err.h @@ -1,6 +1,6 @@ /* ** Error handling and debugging support. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_ERR_H diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index ae784bc9..2d54d1e9 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h @@ -1,6 +1,6 @@ /* ** VM error messages. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ /* This file may be included multiple times with different ERRDEF macros. */ diff --git a/src/lj_ff.h b/src/lj_ff.h index 693a9b54..0b01e16a 100644 --- a/src/lj_ff.h +++ b/src/lj_ff.h @@ -1,6 +1,6 @@ /* ** Fast function IDs. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FF_H diff --git a/src/lj_ffrecord.c b/src/lj_ffrecord.c index c10e38fe..bc11e297 100644 --- a/src/lj_ffrecord.c +++ b/src/lj_ffrecord.c @@ -1,6 +1,6 @@ /* ** Fast function call recorder. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_ffrecord_c diff --git a/src/lj_ffrecord.h b/src/lj_ffrecord.h index 2333b528..7ff270a0 100644 --- a/src/lj_ffrecord.h +++ b/src/lj_ffrecord.h @@ -1,6 +1,6 @@ /* ** Fast function call recorder. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FFRECORD_H diff --git a/src/lj_frame.h b/src/lj_frame.h index 143a6812..aea3c55c 100644 --- a/src/lj_frame.h +++ b/src/lj_frame.h @@ -1,6 +1,6 @@ /* ** Stack frames. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FRAME_H diff --git a/src/lj_func.c b/src/lj_func.c index 1f5c3240..83dab3b1 100644 --- a/src/lj_func.c +++ b/src/lj_func.c @@ -1,6 +1,6 @@ /* ** Function handling (prototypes, functions and upvalues). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_func.h b/src/lj_func.h index 6ed45065..7a3a2e3f 100644 --- a/src/lj_func.h +++ b/src/lj_func.h @@ -1,6 +1,6 @@ /* ** Function handling (prototypes, functions and upvalues). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_FUNC_H diff --git a/src/lj_gc.c b/src/lj_gc.c index 6b664908..793d8dac 100644 --- a/src/lj_gc.c +++ b/src/lj_gc.c @@ -1,6 +1,6 @@ /* ** Garbage collector. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_gc.h b/src/lj_gc.h index dc230848..75b38db8 100644 --- a/src/lj_gc.h +++ b/src/lj_gc.h @@ -1,6 +1,6 @@ /* ** Garbage collector. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_GC_H diff --git a/src/lj_gdbjit.c b/src/lj_gdbjit.c index d106bb5d..260796ea 100644 --- a/src/lj_gdbjit.c +++ b/src/lj_gdbjit.c @@ -1,6 +1,6 @@ /* ** Client for the GDB JIT API. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_gdbjit_c diff --git a/src/lj_gdbjit.h b/src/lj_gdbjit.h index 7824885b..5e42d3cb 100644 --- a/src/lj_gdbjit.h +++ b/src/lj_gdbjit.h @@ -1,6 +1,6 @@ /* ** Client for the GDB JIT API. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_GDBJIT_H diff --git a/src/lj_ir.c b/src/lj_ir.c index e2ec22b2..e81beb81 100644 --- a/src/lj_ir.c +++ b/src/lj_ir.c @@ -1,6 +1,6 @@ /* ** SSA IR (Intermediate Representation) emitter. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_ir_c diff --git a/src/lj_ir.h b/src/lj_ir.h index 7a0e016a..11ecdf27 100644 --- a/src/lj_ir.h +++ b/src/lj_ir.h @@ -1,6 +1,6 @@ /* ** SSA IR (Intermediate Representation) format. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_IR_H diff --git a/src/lj_iropt.h b/src/lj_iropt.h index 12943d25..03029f80 100644 --- a/src/lj_iropt.h +++ b/src/lj_iropt.h @@ -1,6 +1,6 @@ /* ** Common header for IR emitter and optimizations. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_IROPT_H diff --git a/src/lj_jit.h b/src/lj_jit.h index cb7ce982..6c930034 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h @@ -1,6 +1,6 @@ /* ** Common definitions for the JIT compiler. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_JIT_H diff --git a/src/lj_lex.c b/src/lj_lex.c index 01e5ce57..c97d6e0e 100644 --- a/src/lj_lex.c +++ b/src/lj_lex.c @@ -1,6 +1,6 @@ /* ** Lexical analyzer. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_lib.c b/src/lj_lib.c index 9540772e..a6681f2b 100644 --- a/src/lj_lib.c +++ b/src/lj_lib.c @@ -1,6 +1,6 @@ /* ** Library function support. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_lib_c diff --git a/src/lj_lib.h b/src/lj_lib.h index 6782e725..ef73218e 100644 --- a/src/lj_lib.h +++ b/src/lj_lib.h @@ -1,6 +1,6 @@ /* ** Library function support. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_LIB_H diff --git a/src/lj_mcode.c b/src/lj_mcode.c index 72002175..104e4925 100644 --- a/src/lj_mcode.c +++ b/src/lj_mcode.c @@ -1,6 +1,6 @@ /* ** Machine code management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_mcode_c diff --git a/src/lj_mcode.h b/src/lj_mcode.h index 27a8c949..be1bdb5a 100644 --- a/src/lj_mcode.h +++ b/src/lj_mcode.h @@ -1,6 +1,6 @@ /* ** Machine code management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_MCODE_H diff --git a/src/lj_meta.c b/src/lj_meta.c index f443e372..5353e4d4 100644 --- a/src/lj_meta.c +++ b/src/lj_meta.c @@ -1,6 +1,6 @@ /* ** Metamethod handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_meta.h b/src/lj_meta.h index 0bb567cc..3854c8a0 100644 --- a/src/lj_meta.h +++ b/src/lj_meta.h @@ -1,6 +1,6 @@ /* ** Metamethod handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_META_H diff --git a/src/lj_obj.c b/src/lj_obj.c index 5dbed7a8..60f5dd3a 100644 --- a/src/lj_obj.c +++ b/src/lj_obj.c @@ -1,6 +1,6 @@ /* ** Miscellaneous object handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_obj_c diff --git a/src/lj_obj.h b/src/lj_obj.h index 342ebafb..f40ef706 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h @@ -1,6 +1,6 @@ /* ** LuaJIT VM tags, values and objects. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_opt_dce.c b/src/lj_opt_dce.c index 49cc766e..253fe3d2 100644 --- a/src/lj_opt_dce.c +++ b/src/lj_opt_dce.c @@ -1,6 +1,6 @@ /* ** DCE: Dead Code Elimination. Pre-LOOP only -- ASM already performs DCE. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_dce_c diff --git a/src/lj_opt_fold.c b/src/lj_opt_fold.c index 04dd713d..6a00f38a 100644 --- a/src/lj_opt_fold.c +++ b/src/lj_opt_fold.c @@ -2,7 +2,7 @@ ** FOLD: Constant Folding, Algebraic Simplifications and Reassociation. ** ABCelim: Array Bounds Check Elimination. ** CSE: Common-Subexpression Elimination. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_fold_c diff --git a/src/lj_opt_loop.c b/src/lj_opt_loop.c index 4f1d31a4..559e579e 100644 --- a/src/lj_opt_loop.c +++ b/src/lj_opt_loop.c @@ -1,6 +1,6 @@ /* ** LOOP: Loop Optimizations. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_loop_c diff --git a/src/lj_opt_mem.c b/src/lj_opt_mem.c index 6633867e..9c22362b 100644 --- a/src/lj_opt_mem.c +++ b/src/lj_opt_mem.c @@ -3,7 +3,7 @@ ** AA: Alias Analysis using high-level semantic disambiguation. ** FWD: Load Forwarding (L2L) + Store Forwarding (S2L). ** DSE: Dead-Store Elimination. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_mem_c diff --git a/src/lj_opt_narrow.c b/src/lj_opt_narrow.c index fb6601e9..837ca015 100644 --- a/src/lj_opt_narrow.c +++ b/src/lj_opt_narrow.c @@ -1,6 +1,6 @@ /* ** NARROW: Narrowing of numbers to integers (double to int32_t). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_opt_narrow_c diff --git a/src/lj_parse.c b/src/lj_parse.c index 22241b24..cb16cb19 100644 --- a/src/lj_parse.c +++ b/src/lj_parse.c @@ -1,6 +1,6 @@ /* ** Lua parser (source code -> bytecode). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_parse.h b/src/lj_parse.h index a05cb4ce..09165359 100644 --- a/src/lj_parse.h +++ b/src/lj_parse.h @@ -1,6 +1,6 @@ /* ** Lua parser (source code -> bytecode). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_PARSE_H diff --git a/src/lj_record.c b/src/lj_record.c index 2aaded14..3e5d3c89 100644 --- a/src/lj_record.c +++ b/src/lj_record.c @@ -1,6 +1,6 @@ /* ** Trace recorder (bytecode -> SSA IR). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_record_c diff --git a/src/lj_record.h b/src/lj_record.h index acd6de09..186a25f7 100644 --- a/src/lj_record.h +++ b/src/lj_record.h @@ -1,6 +1,6 @@ /* ** Trace recorder (bytecode -> SSA IR). -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_RECORD_H diff --git a/src/lj_snap.c b/src/lj_snap.c index 64db5288..fa2a20e0 100644 --- a/src/lj_snap.c +++ b/src/lj_snap.c @@ -1,6 +1,6 @@ /* ** Snapshot handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_snap_c diff --git a/src/lj_snap.h b/src/lj_snap.h index c5b8b2a1..e4c11a8c 100644 --- a/src/lj_snap.h +++ b/src/lj_snap.h @@ -1,6 +1,6 @@ /* ** Snapshot handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_SNAP_H diff --git a/src/lj_state.c b/src/lj_state.c index 79ab34e3..85348aa7 100644 --- a/src/lj_state.c +++ b/src/lj_state.c @@ -1,6 +1,6 @@ /* ** State and stack handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_state.h b/src/lj_state.h index d5b9d888..d8d6104e 100644 --- a/src/lj_state.h +++ b/src/lj_state.h @@ -1,6 +1,6 @@ /* ** State and stack handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_STATE_H diff --git a/src/lj_str.c b/src/lj_str.c index 19f9d191..20049ab3 100644 --- a/src/lj_str.c +++ b/src/lj_str.c @@ -1,6 +1,6 @@ /* ** String handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_str.h b/src/lj_str.h index 50d1ae5f..26b932e0 100644 --- a/src/lj_str.h +++ b/src/lj_str.h @@ -1,6 +1,6 @@ /* ** String handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_STR_H diff --git a/src/lj_tab.c b/src/lj_tab.c index d6175bbd..d64a0426 100644 --- a/src/lj_tab.c +++ b/src/lj_tab.c @@ -1,6 +1,6 @@ /* ** Table handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/lj_tab.h b/src/lj_tab.h index d18c604e..0ccfb9b4 100644 --- a/src/lj_tab.h +++ b/src/lj_tab.h @@ -1,6 +1,6 @@ /* ** Table handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TAB_H diff --git a/src/lj_target.h b/src/lj_target.h index e1af8e29..8c91bf7e 100644 --- a/src/lj_target.h +++ b/src/lj_target.h @@ -1,6 +1,6 @@ /* ** Definitions for target CPU. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TARGET_H diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 7aab599a..94ab3c32 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h @@ -1,6 +1,6 @@ /* ** Definitions for x86 and x64 CPUs. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TARGET_X86_H diff --git a/src/lj_trace.c b/src/lj_trace.c index d0a21bbf..c508c02a 100644 --- a/src/lj_trace.c +++ b/src/lj_trace.c @@ -1,6 +1,6 @@ /* ** Trace management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_trace_c diff --git a/src/lj_trace.h b/src/lj_trace.h index 9163abf2..25a456d9 100644 --- a/src/lj_trace.h +++ b/src/lj_trace.h @@ -1,6 +1,6 @@ /* ** Trace management. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_TRACE_H diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h index f1a86fcf..e212dd4c 100644 --- a/src/lj_traceerr.h +++ b/src/lj_traceerr.h @@ -1,6 +1,6 @@ /* ** Trace compiler error messages. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ /* This file may be included multiple times with different TREDEF macros. */ diff --git a/src/lj_udata.c b/src/lj_udata.c index 312109e6..869f31f8 100644 --- a/src/lj_udata.c +++ b/src/lj_udata.c @@ -1,6 +1,6 @@ /* ** Userdata handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #define lj_udata_c diff --git a/src/lj_udata.h b/src/lj_udata.h index fba4c224..952c7482 100644 --- a/src/lj_udata.h +++ b/src/lj_udata.h @@ -1,6 +1,6 @@ /* ** Userdata handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_UDATA_H diff --git a/src/lj_vm.h b/src/lj_vm.h index 2f9b10ec..1f9cf9b1 100644 --- a/src/lj_vm.h +++ b/src/lj_vm.h @@ -1,6 +1,6 @@ /* ** Assembler VM interface definitions. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_VM_H diff --git a/src/lj_vmevent.c b/src/lj_vmevent.c index 4f5c440e..67cc6dc1 100644 --- a/src/lj_vmevent.c +++ b/src/lj_vmevent.c @@ -1,6 +1,6 @@ /* ** VM event handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #include diff --git a/src/lj_vmevent.h b/src/lj_vmevent.h index 9d21cb1e..857e5be5 100644 --- a/src/lj_vmevent.h +++ b/src/lj_vmevent.h @@ -1,6 +1,6 @@ /* ** VM event handling. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_VMEVENT_H diff --git a/src/ljamalg.c b/src/ljamalg.c index 56521752..5dafc1b5 100644 --- a/src/ljamalg.c +++ b/src/ljamalg.c @@ -1,6 +1,6 @@ /* ** LuaJIT core and libraries amalgamation. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ /* diff --git a/src/luaconf.h b/src/luaconf.h index 7278b3ef..a1fefaa8 100644 --- a/src/luaconf.h +++ b/src/luaconf.h @@ -1,6 +1,6 @@ /* ** Configuration header. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef luaconf_h diff --git a/src/luajit.c b/src/luajit.c index 2e85f01d..697c0771 100644 --- a/src/luajit.c +++ b/src/luajit.c @@ -1,6 +1,6 @@ /* ** LuaJIT frontend. Runs commands, scripts, read-eval-print (REPL) etc. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h diff --git a/src/luajit.h b/src/luajit.h index 30990d65..87046653 100644 --- a/src/luajit.h +++ b/src/luajit.h @@ -1,7 +1,7 @@ /* ** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ ** -** Copyright (C) 2005-2010 Mike Pall. All rights reserved. +** Copyright (C) 2005-2011 Mike Pall. All rights reserved. ** ** Permission is hereby granted, free of charge, to any person obtaining ** a copy of this software and associated documentation files (the @@ -33,7 +33,7 @@ #define LUAJIT_VERSION "LuaJIT 2.0.0-beta5" #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta5 -#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2010 Mike Pall" +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2011 Mike Pall" #define LUAJIT_URL "http://luajit.org/" /* Modes for luaJIT_setmode. */ diff --git a/src/lualib.h b/src/lualib.h index fab30b11..35fb698a 100644 --- a/src/lualib.h +++ b/src/lualib.h @@ -1,6 +1,6 @@ /* ** Standard library header. -** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LUALIB_H diff --git a/src/msvcbuild.bat b/src/msvcbuild.bat index 899b876c..cd182362 100644 --- a/src/msvcbuild.bat +++ b/src/msvcbuild.bat @@ -1,5 +1,5 @@ @rem Script to build LuaJIT with MSVC. -@rem Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h +@rem Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h @rem @rem Either open a "Visual Studio .NET Command Prompt" @rem (Note that the Express Edition does not contain an x64 compiler) -- cgit v1.2.3-55-g6feb