repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
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
}