Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
compound-type.c
blob: 63ba69460c317351f4814825bdc88e807db5ed9a [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 < %s -emit-llvm -triple i686-pc-linux-gnu > %t
// RUN: grep "div i32" %t
// RUN: grep "shl i32" %t
unsigned
char
a
,
b
;
void
c
(
void
)
{
a
<<=
b
;}
void
d
(
void
)
{
a
/=
b
;}