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 | debeeba6ec7928f3b577f8fca0a5837f6f053852 (patch) | |
tree | ca296fa61aea815e9f670f93299f59953b3e280c /lib/CodeGen/PseudoSourceValue.cpp | |
parent | f8df0ff9a5d1be41ca237bcd40ced821839b32fa (diff) |
From Chris' review: fix 80 column violations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | lib/CodeGen/PseudoSourceValue.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index e1eb4e01a2..5c5b1d6df9 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/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", |