From: Nick Lewycky Date: Sat, 10 Dec 2011 03:16:20 +0000 (+0000) Subject: Fix typo, reported by Eitan Adler! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=46c313fb5a027c59163dd2295bdc473d58096510;p=oota-llvm.git Fix typo, reported by Eitan Adler! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146316 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index b347ca8e680..44402a9e68f 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -465,7 +465,7 @@ public: bool isSpillSlotObjectIndex(int ObjectIdx) const { assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && "Invalid Object Idx!"); - return Objects[ObjectIdx+NumFixedObjects].isSpillSlot;; + return Objects[ObjectIdx+NumFixedObjects].isSpillSlot; } /// isDeadObjectIndex - Returns true if the specified index corresponds to