blob: 0ab85b4c9c76ec37bb69a36559a2813a5a7ef225 [file] [log] [blame]
Daniel Dunbareda3f702010-06-14 21:37:09 +00001// 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
Sebastian Pop9ec60df2012-01-20 22:01:23 +00004// RUN: %clang --target i386-pc-linux-gnu -### \
Daniel Dunbareda3f702010-06-14 21:37:09 +00005// 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