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
make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git]
/
test
/
FrontendC
/
2005-09-24-AsmUserPrefix.c
blob
9b9b153e27615ba3c83805535be7d8db16755996
1
// RUN: %llvmgcc %s -S -o - | llvm-as | opt -std-compile-opts | llc | \
2
// RUN: not grep _foo2
3
4
void
foo
()
__asm__
(
"foo2"
);
5
6
void
bar
() {
7
foo
();
8
}