commit | 6ca3a8ed3036757f712f49384ff114545f82aba8 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Jan 01 01:05:34 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Jan 01 01:05:34 2008 +0000 |
tree | af6818e607a034a6c52d66091621d2f5b1772b68 | |
parent | d2fd6db5816e58ea3287bef90250e044025e7bca [diff] [blame] |
Fix a bug in my previous patch: refer to the impl not the pure virtual version. It's unclear why gcc would ever compile this... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45476 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index e12f646..10e5947 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp
@@ -575,7 +575,7 @@ // Fallthrough intended. } default: - return TargetInstrInfo::commuteInstruction(MI); + return TargetInstrInfoImpl::commuteInstruction(MI); } }