xref: /minix3/external/bsd/llvm/dist/clang/test/Driver/debug-unsupported.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: not %clang -c -gstabs %s 2>&1 | FileCheck %s
2*f4a2713aSLionel Sambuc // RUN: not %clang -c -gstabs+ %s 2>&1 | FileCheck %s
3*f4a2713aSLionel Sambuc // RUN: not %clang -c -gcoff %s 2>&1 | FileCheck %s
4*f4a2713aSLionel Sambuc // RUN: not %clang -c -gxcoff %s 2>&1 | FileCheck %s
5*f4a2713aSLionel Sambuc // RUN: not %clang -c -gxcoff+ %s 2>&1 | FileCheck %s
6*f4a2713aSLionel Sambuc // RUN: not %clang -c -gvms %s 2>&1 | FileCheck %s
7*f4a2713aSLionel Sambuc // RUN: not %clang -c -gstabs1 %s 2>&1 | FileCheck %s
8*f4a2713aSLionel Sambuc // RUN: not %clang -c -gcoff2 %s 2>&1 | FileCheck %s
9*f4a2713aSLionel Sambuc // RUN: not %clang -c -gxcoff3 %s 2>&1 | FileCheck %s
10*f4a2713aSLionel Sambuc // RUN: not %clang -c -gvms0 %s 2>&1 | FileCheck %s
11*f4a2713aSLionel Sambuc // RUN: not %clang -c -gtoggle %s 2>&1 | FileCheck %s
12*f4a2713aSLionel Sambuc //
13*f4a2713aSLionel Sambuc // CHECK: error: unsupported option
14