Skip to content

Commit

Permalink
Fix whitespace error from r215279, NFC
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215667 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dexonsmith committed Aug 14, 2014
1 parent 41c5e68 commit 3f8f30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/X86/X86Subtarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 3f8f30f

Please sign in to comment.