[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 8 15:42:36 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCAsmPrinter.cpp updated: 1.148 -> 1.149
---
Log message:

Darwin doesn't support #APP/#NO_APP


---
Diffs of the changes:  (+2 -2)

 PPCAsmPrinter.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.148 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.149
--- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.148	Wed Feb  8 00:56:40 2006
+++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp	Wed Feb  8 17:42:22 2006
@@ -246,8 +246,7 @@
     DarwinDwarfWriter DW;
 
     DarwinAsmPrinter(std::ostream &O, TargetMachine &TM)
-      : PPCAsmPrinter(O, TM), DW(O, this)      
-      {
+      : PPCAsmPrinter(O, TM), DW(O, this) {
       CommentString = ";";
       GlobalPrefix = "_";
       PrivateGlobalPrefix = "L";     // Marker for constant pool idxs
@@ -258,6 +257,7 @@
       LCOMMDirective = "\t.lcomm\t";
       StaticCtorsSection = ".mod_init_func";
       StaticDtorsSection = ".mod_term_func";
+      InlineAsmStart = InlineAsmEnd = "";  // Don't use #APP/#NO_APP
     }
 
     virtual const char *getPassName() const {






More information about the llvm-commits mailing list