From: Duncan P. N. Exon Smith Date: Thu, 14 Aug 2014 17:18:26 +0000 (+0000) Subject: Fix whitespace error from r215279, NFC X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3f8f30fcee4cddab5a8b870ec9d441d79d2b555f;p=oota-llvm.git Fix whitespace error from r215279, NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215667 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index 9d20d7827c2..fd1d474c687 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -330,7 +330,7 @@ static std::string computeDataLayout(const Triple &TT) { 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";