From 7b5d916c980ce3d5a37f8b9eb6115a5334ade774 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 11 Feb 2008 18:57:43 +0000 Subject: From Chris' review: fix 80 column violations llvm-svn: 46961 --- llvm/lib/CodeGen/PseudoSourceValue.cpp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp') 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 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", -- cgit v1.2.3