Skip to content
Snippets Groups Projects
Commit d32cb5ee authored by Chris Lattner's avatar Chris Lattner
Browse files

wrap long lines

llvm-svn: 30662
parent ddfe6998
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,8 @@ static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ ...@@ -70,7 +70,8 @@ static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){
extern "C" void PPC32CompilationCallback(); extern "C" void PPC32CompilationCallback();
extern "C" void PPC64CompilationCallback(); extern "C" void PPC64CompilationCallback();
#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && !defined(__ppc64__) #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
!defined(__ppc64__)
// CompilationCallback stub - We can't use a C function with inline assembly in // CompilationCallback stub - We can't use a C function with inline assembly in
// it, because we the prolog/epilog inserted by GCC won't work for us. Instead, // it, because we the prolog/epilog inserted by GCC won't work for us. Instead,
// write our own wrapper, which does things our way, so we have complete control // write our own wrapper, which does things our way, so we have complete control
...@@ -135,7 +136,8 @@ void PPC32CompilationCallback() { ...@@ -135,7 +136,8 @@ void PPC32CompilationCallback() {
} }
#endif #endif
#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && defined(__ppc64__) #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
defined(__ppc64__)
asm( asm(
".text\n" ".text\n"
".align 2\n" ".align 2\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment