* Added M_ALD, M_AST macros
authortwisti <none@none>
Tue, 21 Jun 2005 15:53:07 +0000 (15:53 +0000)
committertwisti <none@none>
Tue, 21 Jun 2005 15:53:07 +0000 (15:53 +0000)
src/vm/jit/x86_64/codegen.h

index e1cf5d549af4f283f20399edba4656d98f1263fb..fccf995db39a7519a4220dbedc7375378404bd97 100644 (file)
@@ -28,7 +28,7 @@
             Christian Thalinger
 
 
-   $Id: codegen.h 2766 2005-06-21 11:46:06Z twisti $
+   $Id: codegen.h 2770 2005-06-21 15:53:07Z twisti $
 
 */
 
@@ -431,6 +431,8 @@ typedef enum {
 #define M_LADD_IMM(a,b)         x86_64_alu_imm_reg(cd, X86_64_ADD, (a), (b))
 #define M_LSUB_IMM(a,b)         x86_64_alu_imm_reg(cd, X86_64_SUB, (a), (b))
 
+#define M_ALD(a,b,c)            M_LLD(a,b,c)
+#define M_AST(a,b,c)            M_LST(a,b,c)
 #define M_AADD(a,b)             M_LADD(a,b)
 #define M_AADD_IMM(a,b)         M_LADD_IMM(a,b)
 #define M_ASUB_IMM(a,b)         M_LSUB_IMM(a,b)