dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] [SCM] DotGNU Portable.NET engine, compilers and to


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] [SCM] DotGNU Portable.NET engine, compilers and tools (pnet) branch, master, updated. 607bd8a13b861964871b8e9bdcf5d27e765ced06
Date: Wed, 05 Jan 2011 13:46:34 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "DotGNU Portable.NET engine, compilers and tools (pnet)".

The branch, master has been updated
       via  607bd8a13b861964871b8e9bdcf5d27e765ced06 (commit)
      from  723b913fda4eb076fae18919cb5624ca78a308ee (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/pnet.git/commit/?id=607bd8a13b861964871b8e9bdcf5d27e765ced06

commit 607bd8a13b861964871b8e9bdcf5d27e765ced06
Author: Klaus Treichel <address@hidden>
Date:   Wed Jan 5 14:45:35 2011 +0100

    Fix a check for a specific register.

diff --git a/ChangeLog b/ChangeLog
index 9db9c52..88330a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
        the now unused members currentException and threadAbortException from
        ILExecThread.
 
+       * engine/amd64_codegen.h (amd64_alu_reg_imm_size): Replace check for
+       reg == X86_EAX with reg == AMD64_RAX.
+
 2011-01-04  Klaus Treichel  <address@hidden>
 
        * engine/cvm.c: Make the interpreter loop variables volatile again
diff --git a/engine/amd64_codegen.h b/engine/amd64_codegen.h
index 72bb5e3..f163747 100644
--- a/engine/amd64_codegen.h
+++ b/engine/amd64_codegen.h
@@ -135,7 +135,7 @@ typedef union {
 
 #define amd64_alu_reg_imm_size(inst,opc,reg,imm,size)  \
        do {    \
-               if ((reg) == X86_EAX) { \
+               if ((reg) == AMD64_RAX) {       \
                        amd64_emit_rex(inst, size, 0, 0, 0); \
                        *(inst)++ = (((unsigned char)(opc)) << 3) + 5;  \
                        x86_imm_emit32 ((inst), (imm)); \

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    3 +++
 engine/amd64_codegen.h |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
DotGNU Portable.NET engine, compilers and tools (pnet)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]