diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-02 12:45:26 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-02 12:45:26 +0000 |
commit | e8b8bb39f99eb2bdbb4cb99906f64919f4de555e (patch) | |
tree | 7fb7653fb41085f4e12af57d162fee8c3dd5f126 | |
parent | f1fcfff5109507d065b4d317ef6b2fee16cc7fd4 (diff) | |
download | haskell-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.c | 2 |
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" |