diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-27 22:50:18 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-27 22:50:18 +0000 |
commit | 377066a5f51ea6c7fe0abfaafc07bdc062d2570d (patch) | |
tree | 3cd089503431d6714b311a8c047208e300781f92 /clang/test/CodeGenCXX/microsoft-interface.cpp | |
parent | edbdd2e5df8b59dac8ae5f45059407f8a79850d6 (diff) | |
download | bcm5719-llvm-377066a5f51ea6c7fe0abfaafc07bdc062d2570d.tar.gz bcm5719-llvm-377066a5f51ea6c7fe0abfaafc07bdc062d2570d.zip |
Use the new Windows environment for target detection
This follows the LLVM change to canonicalise the Windows target triple
spellings. Rather than treating each Windows environment as a single entity,
the environments are now modelled properly as an environment. This is a
mechanical change to convert the triple use to reflect that change.
llvm-svn: 204978
Diffstat (limited to 'clang/test/CodeGenCXX/microsoft-interface.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/microsoft-interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/microsoft-interface.cpp b/clang/test/CodeGenCXX/microsoft-interface.cpp index e60e0a0175c..c030d1d0b3b 100644 --- a/clang/test/CodeGenCXX/microsoft-interface.cpp +++ b/clang/test/CodeGenCXX/microsoft-interface.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -std=c++11 -fms-extensions -Wno-microsoft -triple=i386-pc-mingw32 -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -std=c++11 -fms-extensions -Wno-microsoft -triple=i386-pc-windows-gnu -emit-llvm %s -o - | FileCheck %s __interface I { int test() { |