[llvm-commits] [llvm] r55704 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Owen Anderson
resistor at mac.com
Wed Sep 3 10:52:00 PDT 2008
Author: resistor
Date: Wed Sep 3 12:51:57 2008
New Revision: 55704
URL: http://llvm.org/viewvc/llvm-project?rev=55704&view=rev
Log:
Oops, I accidentally broke the fallback case with my last commit.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=55704&r1=55703&r2=55704&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Wed Sep 3 12:51:57 2008
@@ -68,6 +68,8 @@
BuildMI(MBB, TII.get(TargetInstrInfo::IMPLICIT_DEF), Reg);
return Reg;
}
+
+ return 0;
}
/// UpdateValueMap - Update the value map to include the new mapping for this
More information about the llvm-commits
mailing list