diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-08-14 17:18:26 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-08-14 17:18:26 +0000 |
commit | e85df16564f58c4777789fe87f969bf1aa1a39ac (patch) | |
tree | 04846b27faeeb8a1d78f1a7bf0bab8bc3d3a7d46 /llvm/lib/Target/X86/X86Subtarget.cpp | |
parent | 2278fcbf0cd88c149fdb72f1a26f65d7ec62dafc (diff) | |
download | bcm5719-llvm-e85df16564f58c4777789fe87f969bf1aa1a39ac.tar.gz bcm5719-llvm-e85df16564f58c4777789fe87f969bf1aa1a39ac.zip |
Fix whitespace error from r215279, NFC
llvm-svn: 215667
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.cpp b/llvm/lib/Target/X86/X86Subtarget.cpp index 9d20d7827c2..fd1d474c687 100644 --- a/llvm/lib/Target/X86/X86Subtarget.cpp +++ b/llvm/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"; |