summaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/PseudoSourceValue.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-10-17 06:22:26 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-10-17 06:22:26 +0000
commitbf125583f8bd8196a34921276add7f304b7c1433 (patch)
tree605c387185bdb4b19cd367de8a1fa4b6ce39c9fd /include/llvm/CodeGen/PseudoSourceValue.h
parentcac25a9452c75b24e33fffe3390de8b2b8983e92 (diff)
downloadexternal_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.h6
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.