aboutsummaryrefslogtreecommitdiffstats
path: root/include
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
commitb8589d5e9e16eb0129ca51a0b24df7e905f38716 (patch)
treed614644a5077f0c67518c1cbe272f8791ece4aba /include
parent319802c33f401392c61756aaf97d94292fd829b4 (diff)
downloadexternal_llvm-b8589d5e9e16eb0129ca51a0b24df7e905f38716.zip
external_llvm-b8589d5e9e16eb0129ca51a0b24df7e905f38716.tar.gz
external_llvm-b8589d5e9e16eb0129ca51a0b24df7e905f38716.tar.bz2
Accidentially left this out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 b5b6b2e..8b32a5a 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