diff options
author | Dan Gohman <gohman@apple.com> | 2008-02-11 18:57:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-02-11 18:57:43 +0000 |
commit | 7b5d916c980ce3d5a37f8b9eb6115a5334ade774 (patch) | |
tree | e5c50153f6e1c49071abcc71abf4611aa7fb3e64 /llvm/lib/CodeGen/PseudoSourceValue.cpp | |
parent | d96dd3463743c96bbc5311d6910f9d8f31991d46 (diff) | |
download | bcm5719-llvm-7b5d916c980ce3d5a37f8b9eb6115a5334ade774.tar.gz bcm5719-llvm-7b5d916c980ce3d5a37f8b9eb6115a5334ade774.zip |
From Chris' review: fix 80 column violations
llvm-svn: 46961
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index e1eb4e01a29..5c5b1d6df90 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp @@ -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", |