forked from OSchip/llvm-project
Remove variable store that is never read.
llvm-svn: 180014
This commit is contained in:
parent
845c2ca78c
commit
6647fb2c60
|
@ -2605,7 +2605,7 @@ unsigned ARMFastISel::ARMEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
|
|||
|
||||
unsigned Opc;
|
||||
bool isBoolZext = false;
|
||||
const TargetRegisterClass *RC = TLI.getRegClassFor(MVT::i32);
|
||||
const TargetRegisterClass *RC = 0;
|
||||
switch (SrcVT.SimpleTy) {
|
||||
default: return 0;
|
||||
case MVT::i16:
|
||||
|
|
Loading…
Reference in New Issue