wrap long lines
authorChris Lattner <sabre@nondot.org>
Thu, 28 Sep 2006 23:32:43 +0000 (23:32 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 28 Sep 2006 23:32:43 +0000 (23:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30662 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCJITInfo.cpp

index 7c1d2a4f499a30b7398b990e1cb191c6e32ba559..14527bf2a3d8d646ad51eeae706d4baca6b9133e 100644 (file)
@@ -70,7 +70,8 @@ static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){
 extern "C" void PPC32CompilationCallback();
 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
 // 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
@@ -135,7 +136,8 @@ void PPC32CompilationCallback() {
 }
 #endif
 
-#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && defined(__ppc64__)
+#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
+    defined(__ppc64__)
 asm(
     ".text\n"
     ".align 2\n"