diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-10 01:45:51 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-10 01:45:51 +0000 |
| commit | 8d62f5c7ce6d73ee2e02b72d9567a05d5680eba2 (patch) | |
| tree | 3384e2fa2f483d0eccd57ee2e74eb57070a1427e /clang | |
| parent | af94c0f2b34240c3b7bc824f5dca68813f26ee8d (diff) | |
| download | bcm5719-llvm-8d62f5c7ce6d73ee2e02b72d9567a05d5680eba2.tar.gz bcm5719-llvm-8d62f5c7ce6d73ee2e02b72d9567a05d5680eba2.zip | |
clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.
llvm-svn: 260347
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/test/Index/skip-parsed-bodies/compile_commands.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Index/skip-parsed-bodies/compile_commands.json b/clang/test/Index/skip-parsed-bodies/compile_commands.json index ddd46be955d..62303cbc87d 100644 --- a/clang/test/Index/skip-parsed-bodies/compile_commands.json +++ b/clang/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" } ] |

