Daniel Dunbar | eda3f70 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 1 | // Check that we extract -MD from '-Wp,-MD,FOO', which is used by a number of |
2 | // major projects (e.g., FireFox and the Linux Kernel). | ||||
3 | |||||
4 | // RUN: %clang --ccc-host-triple i386-pc-linux-gnu -### \ | ||||
5 | // RUN: -Wp,-MD,FOO.d -fsyntax-only %s 2> %t | ||||
6 | // RUN: FileCheck < %t %s | ||||
7 | // | ||||
8 | // CHECK: "-cc1" | ||||
9 | // CHECK-NOT: -MD | ||||
10 | // CHECK: "-dependency-file" "FOO.d" | ||||
11 | // CHECK: "-MT" | ||||
12 | // | ||||
13 | // PR4062 |