aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-09-05 21:58:18 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-09-05 21:58:18 +0000
commit38a90969eaae1d0ef366c0fbe39f0ee447de7a8d (patch)
treed614644a5077f0c67518c1cbe272f8791ece4aba
parentf3bb2e65d12857f83b273f4ecab013680310bbbc (diff)
Accidentially left this out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41730 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/LiveInterval.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h
index b5b6b2e0c6..8b32a5a0c6 100644
--- a/include/llvm/CodeGen/LiveInterval.h
+++ b/include/llvm/CodeGen/LiveInterval.h
@@ -163,7 +163,8 @@ namespace llvm {
/// getNextValue - Create a new value number and return it. MIIdx specifies
/// the instruction that defines the value number.
- VNInfo *getNextValue(unsigned MIIdx, unsigned SrcReg) {
+ VNInfo *getNextValue(unsigned MIIdx, unsigned SrcReg,
+ BumpPtrAllocator &VNInfoAllocator) {
#ifdef __GNUC__
unsigned Alignment = __alignof__(VNInfo);
#else