summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-12-10 03:16:20 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-12-10 03:16:20 +0000
commit46c313fb5a027c59163dd2295bdc473d58096510 (patch)
tree7e616a2826bdf1125a47c219238e7b81ef8e8311
parent77caaf0fc000a1e2e2afe949b6205ea5db668be9 (diff)
downloadllvm-46c313fb5a027c59163dd2295bdc473d58096510.tar.gz
llvm-46c313fb5a027c59163dd2295bdc473d58096510.tar.bz2
llvm-46c313fb5a027c59163dd2295bdc473d58096510.tar.xz
Fix typo, reported by Eitan Adler!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146316 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/MachineFrameInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h
index b347ca8e68..44402a9e68 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