mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
From Chris' review: fix 80 column violations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46961 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f8df0ff9a5
commit
debeeba6ec
@ -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…
x
Reference in New Issue
Block a user