repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
print_line_empty_file.c
blob
868d0b7a8b8e2351f7c14a324d620ba5f0104323
1
// RUN: %clang_cc1 -E %s | FileCheck %s
2
3
#line 21
""
4
int
foo
() {
return
42
; }
5
6
#line 4
"bug.c"
7
int
bar
() {
return
21
; }
8
9
// CHECK: # 21 ""
10
// CHECK: int foo() { return 42; }
11
// CHECK: # 4 "bug.c"
12
// CHECK: int bar() { return 21; }