diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-17 06:22:26 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-17 06:22:26 +0000 |
commit | 77e61b46fce5e165ecfedb5666c43b3d2c1dc971 (patch) | |
tree | 605c387185bdb4b19cd367de8a1fa4b6ce39c9fd /include/llvm | |
parent | 1adc252eb5e951fc26ff19d06854d7828f9c5f48 (diff) | |
download | external_llvm-77e61b46fce5e165ecfedb5666c43b3d2c1dc971.tar.gz external_llvm-77e61b46fce5e165ecfedb5666c43b3d2c1dc971.tar.bz2 external_llvm-77e61b46fce5e165ecfedb5666c43b3d2c1dc971.zip |
Rename getFixedStack to getStackObject. The stack objects represented are not
necessarily fixed. Only those will negative frame indices are "fixed."
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84315 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-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 c6be645040..ce6b036c98 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 fixed stack frame entry, - /// e.g., a spill slot. - static const PseudoSourceValue *getFixedStack(int FI); + /// 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 the area below the stack frame of /// a function, e.g., the argument space. |