1*8fbe78f6SDaniel Dunbar // RUN: %clang_cc1 < %s -emit-llvm -triple i686-pc-linux-gnu > %t 28b576979SDaniel Dunbar // RUN: grep "div i32" %t 38b7b1b1aSEli Friedman // RUN: grep "shl i32" %t 48b7b1b1aSEli Friedman 58b7b1b1aSEli Friedman unsigned char a,b; c(void)68b7b1b1aSEli Friedmanvoid c(void) {a <<= b;} d(void)78b7b1b1aSEli Friedmanvoid d(void) {a /= b;} 8