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> 2004-09-21 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa.c (verify_def): Use print_generic_stmt, * tree-ssa.c (verify_def): Use print_generic_stmt,
......
...@@ -120,7 +120,11 @@ L0$_abort: ...@@ -120,7 +120,11 @@ L0$_abort:
.lazy_symbol_pointer .lazy_symbol_pointer
L_abort$lazy_ptr: L_abort$lazy_ptr:
.indirect_symbol _abort .indirect_symbol _abort
.long dyld_stub_binding_helper #ifdef __ppc64__
.quad dyld_stub_binding_helper
#else
.long dyld_stub_binding_helper
#endif
#else #else
bl _abort bl _abort
#endif #endif
......
...@@ -42,7 +42,11 @@ ...@@ -42,7 +42,11 @@
.non_lazy_symbol_pointer .non_lazy_symbol_pointer
L_has_vec$non_lazy_ptr: L_has_vec$non_lazy_ptr:
.indirect_symbol __cpu_has_altivec .indirect_symbol __cpu_has_altivec
#ifdef __ppc64__
.quad 0
#else
.long 0 .long 0
#endif
#else #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