diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-07-03 00:40:23 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-07-03 00:40:23 +0000 |
commit | 0664a67fe1cf6bbf93b51153c8cd452409995efb (patch) | |
tree | f607126c60d14c50ba9fcd542709b85a4e1b65d5 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 621c85b038c4508ce8db4ec4e5aed3d4b9768785 (diff) | |
download | bcm5719-llvm-0664a67fe1cf6bbf93b51153c8cd452409995efb.tar.gz bcm5719-llvm-0664a67fe1cf6bbf93b51153c8cd452409995efb.zip |
Remove isSS argument from CreateFixedObject. Fixed objects cannot be spill slots so it's always false.
llvm-svn: 107550
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index a38c881982e..5b03156ae47 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -438,10 +438,10 @@ MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx, /// index with a negative value. /// int MachineFrameInfo::CreateFixedObject(uint64_t Size, int64_t SPOffset, - bool Immutable, bool isSS) { + bool Immutable) { assert(Size != 0 && "Cannot allocate zero size fixed stack objects!"); Objects.insert(Objects.begin(), StackObject(Size, 1, SPOffset, Immutable, - isSS)); + /*isSS*/false)); return -++NumFixedObjects; } |