summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-03-02 12:45:26 +0000
committerIan Lynagh <ian@well-typed.com>2013-03-02 12:45:26 +0000
commite8b8bb39f99eb2bdbb4cb99906f64919f4de555e (patch)
tree7fb7653fb41085f4e12af57d162fee8c3dd5f126
parentf1fcfff5109507d065b4d317ef6b2fee16cc7fd4 (diff)
downloadhaskell-e8b8bb39f99eb2bdbb4cb99906f64919f4de555e.tar.gz
Use .globl rather than .global on arm; part of #7707
Apparently ios only understands .globl, but Linux appears to understand both.
-rw-r--r--rts/StgCRun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/StgCRun.c b/rts/StgCRun.c
index 5789c82f8f..127fab6551 100644
--- a/rts/StgCRun.c
+++ b/rts/StgCRun.c
@@ -684,7 +684,7 @@ StgRun(StgFunPtr f, StgRegTable *basereg) {
*/
"bx %1\n\t"
- ".global " STG_RETURN "\n\t"
+ ".globl " STG_RETURN "\n\t"
THUMB_FUNC
".type " STG_RETURN ", %%function\n"
STG_RETURN ":\n\t"