summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/wtf/InlineASM.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/wtf/InlineASM.h')
-rw-r--r--Source/JavaScriptCore/wtf/InlineASM.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/wtf/InlineASM.h b/Source/JavaScriptCore/wtf/InlineASM.h
index 379ebd364..1c99e65a1 100644
--- a/Source/JavaScriptCore/wtf/InlineASM.h
+++ b/Source/JavaScriptCore/wtf/InlineASM.h
@@ -70,4 +70,11 @@
#define HIDE_SYMBOL(name)
#endif
+// FIXME: figure out how this works on all the platforms. I know that
+// on Linux, the preferred form is ".Lstuff" as opposed to "Lstuff".
+// Don't know about any of the others.
+#if PLATFORM(MAC)
+#define LOCAL_LABEL_STRING(name) "L" #name
+#endif
+
#endif // InlineASM_h