Home | History | Annotate | Download | only in CodeGen
      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;}
      8