[clang-tools-extra] r300545 - clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp: Appease targeting msvc with -fno-ms-extensions.

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 18 05:13:31 PDT 2017


Author: chapuni
Date: Tue Apr 18 07:13:30 2017
New Revision: 300545

URL: http://llvm.org/viewvc/llvm-project?rev=300545&view=rev
Log:
clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp: Appease targeting msvc with -fno-ms-extensions.

FIXME: This may work with -target x86_64-win32.

Modified:
    clang-tools-extra/trunk/test/clang-tidy/performance-inefficient-vector-operation.cpp

Modified: clang-tools-extra/trunk/test/clang-tidy/performance-inefficient-vector-operation.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/performance-inefficient-vector-operation.cpp?rev=300545&r1=300544&r2=300545&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/performance-inefficient-vector-operation.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/performance-inefficient-vector-operation.cpp Tue Apr 18 07:13:30 2017
@@ -1,4 +1,5 @@
-// RUN: %check_clang_tidy %s performance-inefficient-vector-operation %t -- -format-style=llvm --
+// RUN: %check_clang_tidy %s performance-inefficient-vector-operation %t -- -format-style=llvm -- -fno-ms-extensions
+// FIXME: This may work with -target x86_64-win32.
 
 typedef int size_t;
 




More information about the cfe-commits mailing list