xref: /minix3/external/bsd/llvm/dist/clang/test/Driver/std.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang -std=c99 -trigraphs -std=gnu99 %s -E -o - | FileCheck -check-prefix=OVERRIDE %s
2*f4a2713aSLionel Sambuc // OVERRIDE: ??(??)
3*f4a2713aSLionel Sambuc // RUN: %clang -ansi %s -E -o - | FileCheck -check-prefix=ANSI %s
4*f4a2713aSLionel Sambuc // ANSI: []
5*f4a2713aSLionel Sambuc // RUN: %clang -std=gnu99 -trigraphs %s -E -o - | FileCheck -check-prefix=EXPLICIT %s
6*f4a2713aSLionel Sambuc // EXPLICIT: []
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc ??(??)
9