diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-23 21:06:36 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-23 21:06:36 +0000 |
commit | 63521d0ab0566f418464b29e5ac6cca7710ae094 (patch) | |
tree | 4d8d2430df4f1321d8ab8d1de3bd17cd82bc2d32 /include/llvm | |
parent | 3bab1f776cf32aadd62d490f54cec968ef38eec7 (diff) | |
download | external_llvm-63521d0ab0566f418464b29e5ac6cca7710ae094.zip external_llvm-63521d0ab0566f418464b29e5ac6cca7710ae094.tar.gz external_llvm-63521d0ab0566f418464b29e5ac6cca7710ae094.tar.bz2 |
Spruce up some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/PseudoSourceValue.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h index 49eb5a3..f68f946 100644 --- a/include/llvm/CodeGen/PseudoSourceValue.h +++ b/include/llvm/CodeGen/PseudoSourceValue.h @@ -50,18 +50,21 @@ namespace llvm { /// e.g., a spill slot. static const PseudoSourceValue *getFixedStack(int FI); - /// A source value referencing the area below the stack frame of a function, - /// e.g., the argument space. + /// A pseudo source value referencing the area below the stack frame of + /// a function, e.g., the argument space. static const PseudoSourceValue *getStack(); - /// A source value referencing the global offset table (or something the - /// like). + /// A pseudo source value referencing the global offset table + /// (or something the like). static const PseudoSourceValue *getGOT(); - /// A SV referencing the constant pool + /// A pseudo source value referencing the constant pool. Since constant + /// pools are constant, this doesn't need to identify a specific constant + /// pool entry. static const PseudoSourceValue *getConstantPool(); - /// A SV referencing the jump table + /// A pseudo source value referencing a jump table. Since jump tables are + /// constant, this doesn't need to identify a specific jump table. static const PseudoSourceValue *getJumpTable(); }; } // End llvm namespace |