Files
clang-p2996/clang/test/CodeGenCXX/bool-bitfield.cpp
Rafael Espindola 3a228ee60c Remove more unused uses of -verify.
llvm-svn: 185643
2013-07-04 14:58:42 +00:00

15 lines
307 B
C++

// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s \
// RUN: | FileCheck %s
// PR14638; make sure this doesn't crash.
struct A {
bool m_sorted : 1;
};
void func1(bool b, A& a1)
{
if ((a1.m_sorted = b)) {}
}
// CHECK: define void @_Z5func1bR1A
// CHECK: br i1
// CHECK: ret void