diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-05-01 16:01:49 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-05-01 16:01:49 +0000 |
| commit | f5bdff7747883d30dc7c9582333414cb7e25b594 (patch) | |
| tree | f8a96995c342dccec3ad54eccb085e1897435d01 /llvm/lib/Target | |
| parent | a3e4b3bd33200fdb91fb4b137d7585ea3c957df9 (diff) | |
| download | bcm5719-llvm-f5bdff7747883d30dc7c9582333414cb7e25b594.tar.gz bcm5719-llvm-f5bdff7747883d30dc7c9582333414cb7e25b594.zip | |
Fix 80 column violation. NFCI.
llvm-svn: 359694
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 80e83544cbb..7f92e5138d1 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -44250,7 +44250,7 @@ void X86TargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const { // Update IsSplitCSR in X86MachineFunctionInfo. X86MachineFunctionInfo *AFI = - Entry->getParent()->getInfo<X86MachineFunctionInfo>(); + Entry->getParent()->getInfo<X86MachineFunctionInfo>(); AFI->setIsSplitCSR(true); } @@ -44278,9 +44278,9 @@ void X86TargetLowering::insertCopiesSplitCSR( // fine for CXX_FAST_TLS since the C++-style TLS access functions should be // nounwind. If we want to generalize this later, we may need to emit // CFI pseudo-instructions. - assert(Entry->getParent()->getFunction().hasFnAttribute( - Attribute::NoUnwind) && - "Function should be nounwind in insertCopiesSplitCSR!"); + assert( + Entry->getParent()->getFunction().hasFnAttribute(Attribute::NoUnwind) && + "Function should be nounwind in insertCopiesSplitCSR!"); Entry->addLiveIn(*I); BuildMI(*Entry, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), NewVR) .addReg(*I); @@ -44299,7 +44299,8 @@ bool X86TargetLowering::supportSwiftError() const { /// Returns the name of the symbol used to emit stack probes or the empty /// string if not applicable. -StringRef X86TargetLowering::getStackProbeSymbolName(MachineFunction &MF) const { +StringRef +X86TargetLowering::getStackProbeSymbolName(MachineFunction &MF) const { // If the function specifically requests stack probes, emit them. if (MF.getFunction().hasFnAttribute("probe-stack")) return MF.getFunction().getFnAttribute("probe-stack").getValueAsString(); |

