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
/
compound-type.c
blob
63ba69460c317351f4814825bdc88e807db5ed9a
1
// RUN: %clang_cc1 < %s -emit-llvm -triple i686-pc-linux-gnu > %t
2
// RUN: grep "div i32" %t
3
// RUN: grep "shl i32" %t
4
5
unsigned char
a
,
b
;
6
void
c
(
void
) {
a
<<=
b
;}
7
void
d
(
void
) {
a
/=
b
;}