Clang Project

clang_source_code/test/CodeGen/compound-type.c
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
5unsigned char a,b;
6void c(void) {a <<= b;}
7void d(void) {a /= b;}
8