diff options
author | Richard Osborne <richard@xmos.com> | 2011-09-23 16:28:10 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2011-09-23 16:28:10 +0000 |
commit | ae191ef63b892f6597a2de48c45e68270ac2fedc (patch) | |
tree | 62a4c288e0a6bb10841e4589290f1beb8a4ddc7c /llvm/lib/Target/XCore/XCoreFrameLowering.cpp | |
parent | dbe8111948d372a6f7445e86a0ac985717fbe1bc (diff) | |
download | bcm5719-llvm-ae191ef63b892f6597a2de48c45e68270ac2fedc.tar.gz bcm5719-llvm-ae191ef63b892f6597a2de48c45e68270ac2fedc.zip |
Fix 80 column violations.
Original patch by Liu.
llvm-svn: 140385
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreFrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreFrameLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/XCore/XCoreFrameLowering.cpp b/llvm/lib/Target/XCore/XCoreFrameLowering.cpp index e4cbeb9cda8..7f8b169819a 100644 --- a/llvm/lib/Target/XCore/XCoreFrameLowering.cpp +++ b/llvm/lib/Target/XCore/XCoreFrameLowering.cpp @@ -100,7 +100,8 @@ void XCoreFrameLowering::emitPrologue(MachineFunction &MF) const { DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); bool FP = hasFP(MF); - bool Nested = MF.getFunction()->getAttributes().hasAttrSomewhere(Attribute::Nest); + bool Nested = MF.getFunction()-> + getAttributes().hasAttrSomewhere(Attribute::Nest); if (Nested) { loadFromStack(MBB, MBBI, XCore::R11, 0, dl, TII); |