[llvm-commits] [llvm] r82655 - /llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h

Dan Gohman gohman at apple.com
Wed Sep 23 14:06:36 PDT 2009


Author: djg
Date: Wed Sep 23 16:06:36 2009
New Revision: 82655

URL: http://llvm.org/viewvc/llvm-project?rev=82655&view=rev
Log:
Spruce up some comments.

Modified:
    llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h

Modified: llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h?rev=82655&r1=82654&r2=82655&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PseudoSourceValue.h Wed Sep 23 16:06:36 2009
@@ -50,18 +50,21 @@
     /// 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





More information about the llvm-commits mailing list