[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
Chris Lattner
sabre at nondot.org
Thu Sep 28 16:32:57 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCJITInfo.cpp updated: 1.29 -> 1.30
---
Log message:
wrap long lines
---
Diffs of the changes: (+4 -2)
PPCJITInfo.cpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.29 llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.30
--- llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.29 Fri Sep 8 17:42:09 2006
+++ llvm/lib/Target/PowerPC/PPCJITInfo.cpp Thu Sep 28 18:32:43 2006
@@ -70,7 +70,8 @@
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 @@
}
#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"
More information about the llvm-commits
mailing list