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
/
exact-div-expr.c
blob
9dce922f95325752841ab75d40fe90b731885bdc
1
// RUN: %llvmgcc -S %s -o - -O1 | grep ashr
2
// RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv
3
4
long long
test
(
int
*
A
,
int
*
B
) {
5
return
A
-
B
;
6
}