forked from OSchip/llvm-project
From Chris' review: fix 80 column violations
llvm-svn: 46961
This commit is contained in:
parent
d96dd34637
commit
7b5d916c98
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue