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 | 99bdae29924e2373a68da0421f0cad08869418b8 (patch) | |
tree | 6d4c09c50d9b56da8c9264da28414754fd5474b6 /llvm | |
parent | 08c0a95ac671b1f8f635b0555155c503e0f66b0c (diff) | |
download | bcm5719-llvm-99bdae29924e2373a68da0421f0cad08869418b8.tar.gz bcm5719-llvm-99bdae29924e2373a68da0421f0cad08869418b8.zip |
Spruce up some comments.
llvm-svn: 82655
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/PseudoSourceValue.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/llvm/include/llvm/CodeGen/PseudoSourceValue.h b/llvm/include/llvm/CodeGen/PseudoSourceValue.h index 49eb5a3dc51..f68f946acdc 100644 --- a/llvm/include/llvm/CodeGen/PseudoSourceValue.h +++ b/llvm/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 |