repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2008-12-23-AsmIntPointerTie.c
blob
da2eda6628edfac59d8716c3389bc7acae352634
1
// RUN: %llvmgcc %s -S -emit-llvm -O1 -o -
2
3
#include <stdint.h>
4
5
int
test
(
void
*
b
) {
6
intptr_t
a
;
7
__asm__
__volatile__
(
"%0 %1 "
:
"=r"
(
a
):
"0"
(
b
));
8
return
a
;
9
}