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 | bf125583f8bd8196a34921276add7f304b7c1433 (patch) | |
tree | 605c387185bdb4b19cd367de8a1fa4b6ce39c9fd /include/llvm/CodeGen/PseudoSourceValue.h | |
parent | cac25a9452c75b24e33fffe3390de8b2b8983e92 (diff) | |
download | external_llvm-bf125583f8bd8196a34921276add7f304b7c1433.zip external_llvm-bf125583f8bd8196a34921276add7f304b7c1433.tar.gz external_llvm-bf125583f8bd8196a34921276add7f304b7c1433.tar.bz2 |
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/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 c6be645..ce6b036 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. |