aboutsummaryrefslogtreecommitdiff
path: root/test/Lexer/gnu_keywords.c
blob: 3234f58114a682f90941df03ba9413985cb17b39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang -DGNU_KEYWORDS -std=gnu89 -fsyntax-only -verify %s
// RUN: %clang -DGNU_KEYWORDS -std=c99 -fgnu-keywords -fsyntax-only -verify %s
// RUN: %clang -std=c99 -fsyntax-only -verify %s
// RUN: %clang -std=gnu89 -fno-gnu-keywords -fsyntax-only -verify %s

void f() {
#ifdef GNU_KEYWORDS
  asm ("ret" : :);
#else
  int asm;
#endif
}