xref: /llvm-project/clang/test/CodeGen/boolassign.c (revision 8fbe78f6fc7b41d1a4228c126fcb522131150518)
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
2 
testBoolAssign(void)3 int testBoolAssign(void) {
4   int ss;
5   if ((ss = ss && ss)) {}
6   return 1;
7 }
8