repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
exact-div-expr.c
blob
a2c12a0b3f6e8defd0ea340fef076bdb6eb6457c
1
// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | grep ashr
2
// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | not grep sdiv
3
4
long long
test
(
int
*
A
,
int
*
B
) {
5
return
A
-
B
;
6
}