]> granicus.if.org Git - clang/commitdiff
Remove erroneous space in "lib64" string constant.
authorYaron Keren <yaron.keren@gmail.com>
Mon, 20 Jul 2015 12:40:25 +0000 (12:40 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Mon, 20 Jul 2015 12:40:25 +0000 (12:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242667 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/MinGWToolChain.cpp

index 5d5205439f932b8f74a9402ef2bb99b9086f5ed4..ee19bb242286edb2f93bcd6f91d7b72230795d88 100644 (file)
@@ -49,7 +49,7 @@ MinGW::MinGW(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
   Arch = (getTriple().getArchName() + "-w64-mingw32").str();
   // lib: Arch Linux, Ubuntu, Windows
   // lib64: openSUSE Linux
-  for (StringRef Lib : {"lib", "lib64 "}) {
+  for (StringRef Lib : {"lib", "lib64"}) {
     LibDir = Base;
     llvm::sys::path::append(LibDir, Lib, "gcc");
     LibDir += llvm::sys::path::get_separator();