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