File: line-directive-system-headers.c

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (47 lines) | stat: -rw-r--r-- 2,195 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify=system -Wsystem-headers %s

int x;

# 42 // #1
// expected-warning@#1 {{this style of line directive is a GNU extension}}
// system-warning@#1 {{this style of line directive is a GNU extension}}
# 42 "foo" // #2
// expected-warning@#2 {{this style of line directive is a GNU extension}}
// system-warning@#2 {{this style of line directive is a GNU extension}}
# 42 "foo" 2 // #3
// expected-error@#3 {{invalid line marker flag '2': cannot pop empty include stack}}
// system-error@#3 {{invalid line marker flag '2': cannot pop empty include stack}}
# 42 "foo" 1 3  // #4: enter
// Warnings silenced when -Wsystem-headers isn't passed.
// system-warning@#4 {{this style of line directive is a GNU extension}}
# 42 "foo" 2 3  // #5: exit
// Warnings silenced when -Wsystem-headers isn't passed.
// system-warning@#5 {{this style of line directive is a GNU extension}}
# 42 "foo" 2 3 4 // #6
// expected-error@#6 {{invalid line marker flag '2': cannot pop empty include stack}}
// system-error@#6 {{invalid line marker flag '2': cannot pop empty include stack}}
# 42 "foo" 3 4 // #7
// expected-warning@#7 {{this style of line directive is a GNU extension}}
// system-warning@#7 {{this style of line directive is a GNU extension}}


// Verify that linemarker diddling of the system header flag works.

# 192 "glomp.h" // #8: not a system header.
// expected-warning@#8 {{this style of line directive is a GNU extension}}
// system-warning@#8 {{this style of line directive is a GNU extension}}

# 192 "glomp.h" 3 // #9: System header.
// Warnings silenced when -Wsystem-headers isn't passed.
// system-warning@#9 {{this style of line directive is a GNU extension}}

#line 42 "blonk.h"  // doesn't change system headerness.

# 97     // #10: doesn't change system headerness.
// Warnings silenced when -Wsystem-headers isn't passed.
// system-warning@#10 {{this style of line directive is a GNU extension}}

# 42 "blonk.h"  // #11: DOES change system headerness.
// Warnings silenced when -Wsystem-headers isn't passed.
// system-warning@#11 {{this style of line directive is a GNU extension}}