[llvm-commits] CVS: llvm/lib/Target/TargetAsmInfo.cpp
Bill Wendling
isanbard at gmail.com
Mon Jan 15 19:42:30 PST 2007
Changes in directory llvm/lib/Target:
TargetAsmInfo.cpp updated: 1.12 -> 1.13
---
Log message:
Fix for PR1095: http://llvm.org/PR1095 :
LLVM would miscompile ASM dialects when compiling for PPC. Added dialects for
the X86 and PPC backends. It defaults to "0", the first variant of a compound
inline asm expression.
---
Diffs of the changes: (+1 -0)
TargetAsmInfo.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Target/TargetAsmInfo.cpp
diff -u llvm/lib/Target/TargetAsmInfo.cpp:1.12 llvm/lib/Target/TargetAsmInfo.cpp:1.13
--- llvm/lib/Target/TargetAsmInfo.cpp:1.12 Sun Jan 14 00:27:21 2007
+++ llvm/lib/Target/TargetAsmInfo.cpp Mon Jan 15 21:42:04 2007
@@ -32,6 +32,7 @@
FunctionAddrSuffix(""),
InlineAsmStart("#APP"),
InlineAsmEnd("#NO_APP"),
+ AssemblerDialect(0),
ZeroDirective("\t.zero\t"),
ZeroDirectiveSuffix(0),
AsciiDirective("\t.ascii\t"),
More information about the llvm-commits
mailing list