diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-10-14 21:26:46 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-10-14 21:26:46 +0000 |
commit | 0329466b6b4927f4e6f5d144891fef06a027fec5 (patch) | |
tree | 76dc7bdfd70c4c7b0c0d983f1787d236629c4913 /lib/Target/Mips | |
parent | 2642196a6570e95e1491ee0120f67baa5c3ea351 (diff) | |
download | external_llvm-0329466b6b4927f4e6f5d144891fef06a027fec5.zip external_llvm-0329466b6b4927f4e6f5d144891fef06a027fec5.tar.gz external_llvm-0329466b6b4927f4e6f5d144891fef06a027fec5.tar.bz2 |
Rename LoadX to LoadExt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
-rw-r--r-- | lib/Target/Mips/MipsISelLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/Mips/MipsISelLowering.cpp b/lib/Target/Mips/MipsISelLowering.cpp index dd6b432..6dc237a 100644 --- a/lib/Target/Mips/MipsISelLowering.cpp +++ b/lib/Target/Mips/MipsISelLowering.cpp @@ -82,9 +82,9 @@ MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM) addLegalFPImmediate(APFloat(+0.0f)); // Load extented operations for i1 types must be promoted - setLoadXAction(ISD::EXTLOAD, MVT::i1, Promote); - setLoadXAction(ISD::ZEXTLOAD, MVT::i1, Promote); - setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote); + setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); + setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); + setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); // Used by legalize types to correctly generate the setcc result. // Without this, every float setcc comes with a AND/OR with the result, |