diff options
author | Chris Lattner <sabre@nondot.org> | 2005-07-03 17:34:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-07-03 17:34:39 +0000 |
commit | 9f6ce0ebb355c5c6cde2679ce2bd09e204d02448 (patch) | |
tree | 5ba8a6b1cd4f9e6a375befdf9432c2f284695c4f /llvm/lib/Target | |
parent | be3a74ca3eb9d4840885bb86d10b9e0d99d86e7a (diff) | |
download | bcm5719-llvm-9f6ce0ebb355c5c6cde2679ce2bd09e204d02448.tar.gz bcm5719-llvm-9f6ce0ebb355c5c6cde2679ce2bd09e204d02448.zip |
Percolate the call up to the right superclass
llvm-svn: 22330
Diffstat (limited to 'llvm/lib/Target')
-rwxr-xr-x | llvm/lib/Target/X86/X86IntelAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86IntelAsmPrinter.cpp b/llvm/lib/Target/X86/X86IntelAsmPrinter.cpp index 64c843b661f..91982977c4b 100755 --- a/llvm/lib/Target/X86/X86IntelAsmPrinter.cpp +++ b/llvm/lib/Target/X86/X86IntelAsmPrinter.cpp @@ -188,7 +188,7 @@ void X86IntelAsmPrinter::printMachineInstruction(const MachineInstr *MI) { } bool X86IntelAsmPrinter::doInitialization(Module &M) { - AsmPrinter::doInitialization(M); + X86SharedAsmPrinter::doInitialization(M); // Tell gas we are outputting Intel syntax (not AT&T syntax) assembly. // // Bug: gas in `intel_syntax noprefix' mode interprets the symbol `Sp' in an |