diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-17 07:53:04 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-17 07:53:04 +0000 |
commit | 6553155172a2e74feff1253837daa608123de54a (patch) | |
tree | 2c2b81a5ab0d17f1a636036ce1f85458d65e2ac5 /include/llvm/CodeGen/PseudoSourceValue.h | |
parent | bf125583f8bd8196a34921276add7f304b7c1433 (diff) | |
download | external_llvm-6553155172a2e74feff1253837daa608123de54a.zip external_llvm-6553155172a2e74feff1253837daa608123de54a.tar.gz external_llvm-6553155172a2e74feff1253837daa608123de54a.tar.bz2 |
Revert 84315 for now. Re-thinking the patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84321 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/PseudoSourceValue.h')
-rw-r--r-- | include/llvm/CodeGen/PseudoSourceValue.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h index ce6b036..c6be645 100644 --- a/include/llvm/CodeGen/PseudoSourceValue.h +++ b/include/llvm/CodeGen/PseudoSourceValue.h @@ -47,9 +47,9 @@ namespace llvm { return V->getValueID() == PseudoSourceValueVal; } - /// A pseudo source value referencing a stack frame entry, - /// e.g., a spill slot or an incoming argument on stack. - static const PseudoSourceValue *getStackObject(int FI); + /// A pseudo source value referencing a fixed stack frame entry, + /// e.g., a spill slot. + static const PseudoSourceValue *getFixedStack(int FI); /// A pseudo source value referencing the area below the stack frame of /// a function, e.g., the argument space. |