1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Accidentially left this out.

llvm-svn: 41730
This commit is contained in:
Evan Cheng 2007-09-05 21:58:18 +00:00
parent 3bda699975
commit 884b7c0c81

View File

@ -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