From: Owen Anderson Date: Wed, 3 Sep 2008 17:51:57 +0000 (+0000) Subject: Oops, I accidentally broke the fallback case with my last commit. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d5d81a457b5ff758b3fcc527af38827490bc68a5;p=oota-llvm.git Oops, I accidentally broke the fallback case with my last commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55704 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 6b47e1808f0..12f12bd22c5 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -68,6 +68,8 @@ unsigned FastISel::getRegForValue(Value *V, BuildMI(MBB, TII.get(TargetInstrInfo::IMPLICIT_DEF), Reg); return Reg; } + + return 0; } /// UpdateValueMap - Update the value map to include the new mapping for this