[llvm] r180015 - No really, don't store anything to this since it's unconditionally
Eric Christopher
echristo at gmail.com
Mon Apr 22 07:11:25 PDT 2013
Author: echristo
Date: Mon Apr 22 09:11:25 2013
New Revision: 180015
URL: http://llvm.org/viewvc/llvm-project?rev=180015&view=rev
Log:
No really, don't store anything to this since it's unconditionally
set below.
Modified:
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFastISel.cpp?rev=180015&r1=180014&r2=180015&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFastISel.cpp Mon Apr 22 09:11:25 2013
@@ -2605,7 +2605,7 @@ unsigned ARMFastISel::ARMEmitIntExt(MVT
unsigned Opc;
bool isBoolZext = false;
- const TargetRegisterClass *RC = 0;
+ const TargetRegisterClass *RC;
switch (SrcVT.SimpleTy) {
default: return 0;
case MVT::i16:
More information about the llvm-commits
mailing list