diff --git a/sourcepawn/jit/AMBuilder b/sourcepawn/jit/AMBuilder index f1c8fa69..d74a92ca 100644 --- a/sourcepawn/jit/AMBuilder +++ b/sourcepawn/jit/AMBuilder @@ -30,9 +30,9 @@ if binary.compiler.cc.behavior == 'msvc': binary.sources += [ 'BaseRuntime.cpp', - 'engine2.cpp', + 'compiled-function.cpp', 'dll_exports.cpp', - 'jit_function.cpp', + 'engine2.cpp', 'sp_vm_basecontext.cpp', 'sp_vm_engine.cpp', 'sp_vm_function.cpp', diff --git a/sourcepawn/jit/BaseRuntime.h b/sourcepawn/jit/BaseRuntime.h index 80d87a09..47029e47 100644 --- a/sourcepawn/jit/BaseRuntime.h +++ b/sourcepawn/jit/BaseRuntime.h @@ -6,7 +6,7 @@ #include #include #include "jit_shared.h" -#include "jit_function.h" +#include "compiled-function.h" #include "sp_vm_function.h" class BaseContext; diff --git a/sourcepawn/jit/Makefile b/sourcepawn/jit/Makefile index 399dd911..ef84fc5b 100644 --- a/sourcepawn/jit/Makefile +++ b/sourcepawn/jit/Makefile @@ -18,7 +18,7 @@ OBJECTS = dll_exports.cpp \ engine2.cpp \ BaseRuntime.cpp \ opcodes.cpp \ - jit_function.cpp \ + compiled-function.cpp \ md5/md5.cpp \ zlib/adler32.c \ zlib/compress.c \ diff --git a/sourcepawn/jit/Makefile.shell b/sourcepawn/jit/Makefile.shell index 192a64f4..6df0ce2d 100644 --- a/sourcepawn/jit/Makefile.shell +++ b/sourcepawn/jit/Makefile.shell @@ -17,7 +17,7 @@ OBJECTS = dll_exports.cpp \ sp_vm_function.cpp \ engine2.cpp \ BaseRuntime.cpp \ - jit_function.cpp \ + compiled-function.cpp \ opcodes.cpp \ watchdog_timer.cpp \ interpreter.cpp \ diff --git a/sourcepawn/jit/jit_function.cpp b/sourcepawn/jit/compiled-function.cpp similarity index 93% rename from sourcepawn/jit/jit_function.cpp rename to sourcepawn/jit/compiled-function.cpp index 0ffafa0b..bb1d0bd0 100644 --- a/sourcepawn/jit/jit_function.cpp +++ b/sourcepawn/jit/compiled-function.cpp @@ -10,7 +10,7 @@ // You should have received a copy of the GNU General Public License along with // SourcePawn. If not, see http://www.gnu.org/licenses/. // -#include "jit_function.h" +#include "compiled-function.h" #include "sp_vm_engine.h" #include "jit_x86.h" diff --git a/sourcepawn/jit/jit_function.h b/sourcepawn/jit/compiled-function.h similarity index 100% rename from sourcepawn/jit/jit_function.h rename to sourcepawn/jit/compiled-function.h diff --git a/sourcepawn/jit/x86/jit_x86.h b/sourcepawn/jit/x86/jit_x86.h index f84ce106..72c33d9f 100644 --- a/sourcepawn/jit/x86/jit_x86.h +++ b/sourcepawn/jit/x86/jit_x86.h @@ -25,7 +25,7 @@ #include "jit_shared.h" #include "BaseRuntime.h" #include "sp_vm_basecontext.h" -#include "jit_function.h" +#include "compiled-function.h" #include "opcodes.h" #include