Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
15efc4d597a47e6ba5794d4fd8d561bf6947233c
/
.
/
test
/
CodeGen
/
exact-div-expr.c
blob: a2c12a0b3f6e8defd0ea340fef076bdb6eb6457c [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | grep ashr
// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | not grep sdiv
long
long
test
(
int
*
A
,
int
*
B
)
{
return
A
-
B
;
}