File: line-directive-system-headers.c

package info (click to toggle)
llvm-toolchain-18 1%3A18.1.8-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,908,340 kB
  • sloc: cpp: 6,667,937; ansic: 1,440,452; asm: 883,619; python: 230,549; objc: 76,880; f90: 74,238; lisp: 35,989; pascal: 16,571; sh: 10,229; perl: 7,459; ml: 5,047; awk: 3,523; makefile: 2,987; javascript: 2,149; xml: 892; fortran: 649; cs: 573
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}}