Commit 76419821 by Stan Shebs Committed by Stan Shebs

darwin-tramp.asm: Add __ppc64__ case.

        * config/rs6000/darwin-tramp.asm: Add __ppc64__ case.
        * config/rs6000/darwin-world.asm: Likewise.

From-SVN: r87836
parent 7bab95ba
2004-09-21 Stan Shebs <shebs@apple.com>
* config/rs6000/darwin-tramp.asm: Add __ppc64__ case.
* config/rs6000/darwin-world.asm: Likewise.
2004-09-21 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa.c (verify_def): Use print_generic_stmt,
......
......@@ -120,7 +120,11 @@ L0$_abort:
.lazy_symbol_pointer
L_abort$lazy_ptr:
.indirect_symbol _abort
.long dyld_stub_binding_helper
#ifdef __ppc64__
.quad dyld_stub_binding_helper
#else
.long dyld_stub_binding_helper
#endif
#else
bl _abort
#endif
......
......@@ -42,7 +42,11 @@
.non_lazy_symbol_pointer
L_has_vec$non_lazy_ptr:
.indirect_symbol __cpu_has_altivec
#ifdef __ppc64__
.quad 0
#else
.long 0
#endif
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment