diff options
| author | Mike Pall <mike> | 2013-02-11 12:54:48 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2013-02-11 12:54:48 +0100 |
| commit | 4a44c4ff69a890f98fe116901c803018e27847e3 (patch) | |
| tree | cfe6d85bbc060b3baa3b7c8a3106362400f1f415 /src/host | |
| parent | 8b46013fdd7a7aad2f3da5cd9b35e0a17be34225 (diff) | |
| download | luajit-4a44c4ff69a890f98fe116901c803018e27847e3.tar.gz luajit-4a44c4ff69a890f98fe116901c803018e27847e3.tar.bz2 luajit-4a44c4ff69a890f98fe116901c803018e27847e3.zip | |
Bump copyright date to 2013.
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/buildvm.c | 2 | ||||
| -rw-r--r-- | src/host/buildvm.h | 2 | ||||
| -rw-r--r-- | src/host/buildvm_asm.c | 2 | ||||
| -rw-r--r-- | src/host/buildvm_fold.c | 2 | ||||
| -rw-r--r-- | src/host/buildvm_lib.c | 2 | ||||
| -rw-r--r-- | src/host/buildvm_peobj.c | 2 | ||||
| -rw-r--r-- | src/host/genminilua.lua | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/host/buildvm.c b/src/host/buildvm.c index b56ec1e1..ba8fbcba 100644 --- a/src/host/buildvm.c +++ b/src/host/buildvm.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder. | 2 | ** LuaJIT VM builder. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** This is a tool to build the hand-tuned assembler code required for | 5 | ** This is a tool to build the hand-tuned assembler code required for |
| 6 | ** LuaJIT's bytecode interpreter. It supports a variety of output formats | 6 | ** LuaJIT's bytecode interpreter. It supports a variety of output formats |
diff --git a/src/host/buildvm.h b/src/host/buildvm.h index 2b7168ed..1a037e16 100644 --- a/src/host/buildvm.h +++ b/src/host/buildvm.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder. | 2 | ** LuaJIT VM builder. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef _BUILDVM_H | 6 | #ifndef _BUILDVM_H |
diff --git a/src/host/buildvm_asm.c b/src/host/buildvm_asm.c index 2f589aad..f18d1493 100644 --- a/src/host/buildvm_asm.c +++ b/src/host/buildvm_asm.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: Assembler source code emitter. | 2 | ** LuaJIT VM builder: Assembler source code emitter. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_fold.c b/src/host/buildvm_fold.c index 73f4f80a..085a4c34 100644 --- a/src/host/buildvm_fold.c +++ b/src/host/buildvm_fold.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: IR folding hash table generator. | 2 | ** LuaJIT VM builder: IR folding hash table generator. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_lib.c b/src/host/buildvm_lib.c index 8e10fec1..40141dfb 100644 --- a/src/host/buildvm_lib.c +++ b/src/host/buildvm_lib.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: library definition compiler. | 2 | ** LuaJIT VM builder: library definition compiler. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include "buildvm.h" | 6 | #include "buildvm.h" |
diff --git a/src/host/buildvm_peobj.c b/src/host/buildvm_peobj.c index 28b771a3..1249445b 100644 --- a/src/host/buildvm_peobj.c +++ b/src/host/buildvm_peobj.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** LuaJIT VM builder: PE object emitter. | 2 | ** LuaJIT VM builder: PE object emitter. |
| 3 | ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h | 3 | ** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h |
| 4 | ** | 4 | ** |
| 5 | ** Only used for building on Windows, since we cannot assume the presence | 5 | ** Only used for building on Windows, since we cannot assume the presence |
| 6 | ** of a suitable assembler. The host and target byte order must match. | 6 | ** of a suitable assembler. The host and target byte order must match. |
diff --git a/src/host/genminilua.lua b/src/host/genminilua.lua index 2a8a5336..e666f088 100644 --- a/src/host/genminilua.lua +++ b/src/host/genminilua.lua | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | -- Lua script to generate a customized, minified version of Lua. | 2 | -- Lua script to generate a customized, minified version of Lua. |
| 3 | -- The resulting 'minilua' is used for the build process of LuaJIT. | 3 | -- The resulting 'minilua' is used for the build process of LuaJIT. |
| 4 | ---------------------------------------------------------------------------- | 4 | ---------------------------------------------------------------------------- |
| 5 | -- Copyright (C) 2005-2012 Mike Pall. All rights reserved. | 5 | -- Copyright (C) 2005-2013 Mike Pall. All rights reserved. |
| 6 | -- Released under the MIT license. See Copyright Notice in luajit.h | 6 | -- Released under the MIT license. See Copyright Notice in luajit.h |
| 7 | ---------------------------------------------------------------------------- | 7 | ---------------------------------------------------------------------------- |
| 8 | 8 | ||
