diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-02-08 23:42:22 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-02-08 23:42:22 +0000 |
| commit | 418caa135640833fda641997dae657062dccf0f4 (patch) | |
| tree | b8d795de4becb0c0d2ff5485f42095ab39eb7f87 /lib/Target/PowerPC/PPCAsmPrinter.cpp | |
| parent | d6c65ea92449bfba377baccf9b15d9346e96a029 (diff) | |
Darwin doesn't support #APP/#NO_APP
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
| -rw-r--r-- | lib/Target/PowerPC/PPCAsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index c7218ea62c..f46d8236bf 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -246,8 +246,7 @@ namespace { 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 @@ namespace { 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 { |
