[llvm-commits] [llvm] r46961 - /llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
Dan Gohman
gohman at apple.com
Mon Feb 11 10:57:44 PST 2008
Author: djg
Date: Mon Feb 11 12:57:43 2008
New Revision: 46961
URL: http://llvm.org/viewvc/llvm-project?rev=46961&view=rev
Log:
>From Chris' review: fix 80 column violations
Modified:
llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
Modified: llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp?rev=46961&r1=46960&r2=46961&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp (original)
+++ llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp Mon Feb 11 12:57:43 2008
@@ -18,11 +18,16 @@
namespace llvm {
static ManagedStatic<PseudoSourceValue[5]> PSVs;
- const PseudoSourceValue *PseudoSourceValue::getFixedStack() { return &(*PSVs)[0]; }
- const PseudoSourceValue *PseudoSourceValue::getStack() { return &(*PSVs)[1]; }
- const PseudoSourceValue *PseudoSourceValue::getGOT() { return &(*PSVs)[2]; }
- const PseudoSourceValue *PseudoSourceValue::getConstantPool() { return &(*PSVs)[3]; }
- const PseudoSourceValue *PseudoSourceValue::getJumpTable() { return &(*PSVs)[4]; }
+ const PseudoSourceValue *PseudoSourceValue::getFixedStack()
+ { return &(*PSVs)[0]; }
+ const PseudoSourceValue *PseudoSourceValue::getStack()
+ { return &(*PSVs)[1]; }
+ const PseudoSourceValue *PseudoSourceValue::getGOT()
+ { return &(*PSVs)[2]; }
+ const PseudoSourceValue *PseudoSourceValue::getConstantPool()
+ { return &(*PSVs)[3]; }
+ const PseudoSourceValue *PseudoSourceValue::getJumpTable()
+ { return &(*PSVs)[4]; }
static const char *PSVNames[] = {
"FixedStack",
More information about the llvm-commits
mailing list