From: Anton Korobeynikov Date: Mon, 30 Mar 2009 15:28:21 +0000 (+0000) Subject: Fix infinite looping X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=48738b9244217f9e6638513598f875ff59fbc5e6;p=oota-llvm.git Fix infinite looping git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68034 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 72197e6203c..7cd3599a61a 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -107,6 +107,8 @@ bool Constant::ContainsRelocations(unsigned Kind) const { // requested return true; } + + return false; } for (unsigned i = 0, e = getNumOperands(); i != e; ++i)