[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / compound-type.c
blob63ba69460c317351f4814825bdc88e807db5ed9a
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
5 unsigned char a,b;
6 void c(void) {a <<= b;}
7 void d(void) {a /= b;}