]> granicus.if.org Git - llvm/commitdiff
Strip trailing whitespace. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 21 Oct 2017 20:40:49 +0000 (20:40 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sat, 21 Oct 2017 20:40:49 +0000 (20:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316277 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.cpp

index 9a64c357f020276e31e1071945b6f7cb92bc7634..e3611a83a1bc41342e07c88f6ee161c0d773a507 100644 (file)
@@ -10793,7 +10793,7 @@ llvm::createCleanupLocalDynamicTLSPass() { return new LDTLSCleanup(); }
 ///
 /// * Call construction overhead: 1 (call instruction)
 /// * Frame construction overhead: 1 (return instruction)
-/// 
+///
 /// \p MachineOutlinerTailCall implies that the function is being tail called.
 /// A jump is emitted instead of a call, and the return is already present in
 /// the outlined sequence. That is,
@@ -10823,7 +10823,7 @@ X86InstrInfo::getOutlininingCandidateInfo(
                                MachineOutlinerTailCall, // Type of call.
                                MachineOutlinerTailCall // Type of frame.
                               );
-  
+
   return MachineOutlinerInfo(1, 1, MachineOutlinerDefault,
                              MachineOutlinerDefault);
 }
@@ -10836,12 +10836,12 @@ bool X86InstrInfo::isFunctionSafeToOutlineFrom(MachineFunction &MF,
   // with the stack.
   if (!F->hasFnAttribute(Attribute::NoRedZone))
       return false;
-  
+
   // If we *don't* want to outline from things that could potentially be deduped
   // then return false.
   if (!OutlineFromLinkOnceODRs && F->hasLinkOnceODRLinkage())
       return false;
-  
+
   // This function is viable for outlining, so return true.
   return true;
 }