[llvm] r215667 - Fix whitespace error from r215279, NFC

Duncan P. N. Exon Smith dexonsmith at apple.com
Thu Aug 14 10:18:26 PDT 2014


Author: dexonsmith
Date: Thu Aug 14 12:18:26 2014
New Revision: 215667

URL: http://llvm.org/viewvc/llvm-project?rev=215667&view=rev
Log:
Fix whitespace error from r215279, NFC

Modified:
    llvm/trunk/lib/Target/X86/X86Subtarget.cpp

Modified: llvm/trunk/lib/Target/X86/X86Subtarget.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86Subtarget.cpp?rev=215667&r1=215666&r2=215667&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86Subtarget.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86Subtarget.cpp Thu Aug 14 12:18:26 2014
@@ -330,7 +330,7 @@ static std::string computeDataLayout(con
     Ret += "-n8:16:32";
 
   // The stack is aligned to 32 bits on some ABIs and 128 bits on others.
-  if (!TT.isArch64Bit() && TT.isOSWindows())  
+  if (!TT.isArch64Bit() && TT.isOSWindows())
     Ret += "-S32";
   else
     Ret += "-S128";





More information about the llvm-commits mailing list