r260347 - clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 9 17:45:51 PST 2016


Author: chapuni
Date: Tue Feb  9 19:45:51 2016
New Revision: 260347

URL: http://llvm.org/viewvc/llvm-project?rev=260347&view=rev
Log:
clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.

Modified:
    cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json

Modified: cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json?rev=260347&r1=260346&r2=260347&view=diff
==============================================================================
--- cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json (original)
+++ cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json Tue Feb  9 19:45:51 2016
@@ -1,17 +1,17 @@
 [
 {
   "directory": ".",
-  "command": "/usr/bin/clang++ -fsyntax-only t1.cpp",
+  "command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t1.cpp",
   "file": "t1.cpp"
 },
 {
   "directory": ".",
-  "command": "/usr/bin/clang++ -fsyntax-only t2.cpp -DBLAH",
+  "command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t2.cpp -DBLAH",
   "file": "t2.cpp"
 },
 {
   "directory": ".",
-  "command": "/usr/bin/clang++ -fsyntax-only t3.cpp -DBLAH",
+  "command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t3.cpp -DBLAH",
   "file": "t2.cpp"
 }
 ]




More information about the cfe-commits mailing list