repo.or.cz
/
official-gcc
/
alias-decl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/bfin/bfin.c (effective_address_32bit_p): Return true for
[official-gcc/alias-decl.git]
/
gcc
/
testsuite
/
gcc.dg
/
arm-asm.c
blob
dd99c68553f7c708f5004a41055f8b167aba536f
1
/* ARM and Thumb asm statements should be able to access the constant
2
pool. */
3
/* { dg-do compile { target arm*-*-* strongarm*-*-* xscale*-*-*} } */
4
extern
unsigned
x
[];
5
unsigned
*
trapTable
()
6
{
7
unsigned
*
i
;
8
9
__asm__
volatile
(
"ldr %0,%1"
:
"=r"
(
i
) :
"m"
(
x
[
0
]));
10
11
return
i
;
12
}
13