• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm -O1 < %s | grep "ret i32 0"
2 
a(void)3 int a(void) {
4   return ++(struct x {unsigned x : 2;}){3}.x;
5 }
6 
7 
8