repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
charset
/
asm1.c
blob
7076d1285665d6e073b3c483373907508afb6fdd
1
/* { dg-do compile { target *-*-* } }
2
{ dg-require-iconv "IBM1047" }
3
{ dg-final { scan-assembler ".ascii bar" } }
4
{ dg-final { scan-assembler ".ascii foo" } }
5
*/
6
extern
int
x
,
y
;
7
8
asm
(
".ascii bar"
);
9
10
int
foo
(
void
)
11
{
12
__asm__
(
".ascii foo"
);
13
return
0
;
14
}