commit | ed33b7357c0a2d7388c9da017aea57c1b81521f2 | [log] [tgz] |
---|---|---|
author | Roland Levillain <rpl@google.com> | Thu Jul 21 14:17:40 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Jul 21 14:17:41 2016 +0000 |
tree | 01c187be9729579b83127e32ce5883ef188462a7 | |
parent | 057361ca33625ed14b33ffd8e641e27916fb2fea [diff] | |
parent | cddb9d2f67baa09552710540c77950a1d95a8f90 [diff] |
Merge "Fix the definition of MACRO_LITERAL for OS X on x86-64."
diff --git a/runtime/arch/x86_64/asm_support_x86_64.S b/runtime/arch/x86_64/asm_support_x86_64.S index cf0039c..c4e723c 100644 --- a/runtime/arch/x86_64/asm_support_x86_64.S +++ b/runtime/arch/x86_64/asm_support_x86_64.S
@@ -52,7 +52,7 @@ #define LITERAL(value) $value #if defined(__APPLE__) - #define MACRO_LITERAL(value) $$(value) + #define MACRO_LITERAL(value) $(value) #else #define MACRO_LITERAL(value) $value #endif