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-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2006-11-20-GlobalSymbols.cpp
blob
74a7fb6422080aa8cefaefb100ac766d26a4ba2b
1
// PR1013
2
// Check to make sure debug symbols use the correct name for globals and
3
// functions. Will not assemble if it fails to.
4
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s
5
6
// CHECK: f\01oo"
7
int
foo
__asm__
(
"f
\001
oo"
);
8
9
int
bar
() {
10
return
foo
;
11
}