From b1b9398ea7bd27a7a420b248ec1140ef9b33820d Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Wed, 3 Sep 2008 17:51:57 +0000 Subject: [PATCH] Oops, I accidentally broke the fallback case with my last commit. llvm-svn: 55704 --- llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 6b47e1808f09..12f12bd22c51 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/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