diff options
author | Christopher Ferris <cferris@google.com> | 2014-07-11 13:08:40 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2014-07-11 13:08:40 -0700 |
commit | ae91207f068d3fac6c5a116bc9117f1f83201c6a (patch) | |
tree | b9d38748d0206d66304132146cbd277d0e6d2628 /runtime/arch | |
parent | 946a55fa7aec5058d357b601ac3554e242cd1afa (diff) | |
download | art-ae91207f068d3fac6c5a116bc9117f1f83201c6a.zip art-ae91207f068d3fac6c5a116bc9117f1f83201c6a.tar.gz art-ae91207f068d3fac6c5a116bc9117f1f83201c6a.tar.bz2 |
Fix mac build.
Change-Id: I34a330ee038c7216eb3c4bcecbff2eb0cfa08589
Diffstat (limited to 'runtime/arch')
-rw-r--r-- | runtime/arch/x86_64/quick_entrypoints_x86_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/arch/x86_64/quick_entrypoints_x86_64.S b/runtime/arch/x86_64/quick_entrypoints_x86_64.S index 7f7226c..885fbfd 100644 --- a/runtime/arch/x86_64/quick_entrypoints_x86_64.S +++ b/runtime/arch/x86_64/quick_entrypoints_x86_64.S @@ -18,7 +18,7 @@ MACRO0(SETUP_FP_CALLEE_SAVE_FRAME) // Create space for ART FP callee-saved registers - subq LITERAL(4 * 8), %rsp + subq MACRO_LITERAL(4 * 8), %rsp CFI_ADJUST_CFA_OFFSET(4 * 8) movq %xmm12, 0(%rsp) movq %xmm13, 8(%rsp) @@ -32,7 +32,7 @@ MACRO0(RESTORE_FP_CALLEE_SAVE_FRAME) movq 8(%rsp), %xmm13 movq 16(%rsp), %xmm14 movq 24(%rsp), %xmm15 - addq LITERAL(4 * 8), %rsp + addq MACRO_LITERAL(4 * 8), %rsp CFI_ADJUST_CFA_OFFSET(- 4 * 8) END_MACRO |