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 | 07d53b1d33e0be27d5fba7f5bc749f3b7332418c (patch) | |
tree | adc145207cc34b4f77d3599a7d8e3faefed55c28 /llvm/lib/Target/PowerPC | |
parent | b7c01f5f4833db0ddfaa11e55f6e6276d499db08 (diff) | |
download | bcm5719-llvm-07d53b1d33e0be27d5fba7f5bc749f3b7332418c.tar.gz bcm5719-llvm-07d53b1d33e0be27d5fba7f5bc749f3b7332418c.zip |
Rename LoadX to LoadExt.
llvm-svn: 57526
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 0cb77c014e8..553ca107ecf 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -53,8 +53,8 @@ PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM) addRegisterClass(MVT::f64, PPC::F8RCRegisterClass); // PowerPC has an i16 but no i8 (or i1) SEXTLOAD - setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote); - setLoadXAction(ISD::SEXTLOAD, MVT::i8, Expand); + setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); + setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand); setTruncStoreAction(MVT::f64, MVT::f32, Expand); |