summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/oat/runtime/x86/runtime_support_x86.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oat/runtime/x86/runtime_support_x86.S b/src/oat/runtime/x86/runtime_support_x86.S
index ccf8403097..f6d818dbab 100644
--- a/src/oat/runtime/x86/runtime_support_x86.S
+++ b/src/oat/runtime/x86/runtime_support_x86.S
@@ -26,7 +26,7 @@
// Mac OS' as(1) uses $0, $1, and so on for macro arguments, and function names
// are mangled with an extra underscore prefix. The use of $x for arguments
// mean that literals need to be represented with $$x in macros.
- #define SYMBOL(name) _ # name
+ #define SYMBOL(name) _ ## name
#define VAR(name,index) SYMBOL($index)
#define LITERAL(value) $$value
#else