From: NAKAMURA Takumi Date: Wed, 10 Feb 2016 01:45:51 +0000 (+0000) Subject: clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2907481ea87a383816dced68dccb1ab952f790a;p=clang clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260347 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Index/skip-parsed-bodies/compile_commands.json b/test/Index/skip-parsed-bodies/compile_commands.json index ddd46be955..62303cbc87 100644 --- a/test/Index/skip-parsed-bodies/compile_commands.json +++ b/test/Index/skip-parsed-bodies/compile_commands.json @@ -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" } ]