[x86] enable machine combiner reassociations for 256-bit vector FP mul/add
[oota-llvm.git] / test / CodeGen / X86 / merge-consecutive-stores-i1.ll
1 ; RUN: llc  -march=x86-64 < %s
2
3 ; Ensure that MergeConsecutiveStores doesn't crash when dealing with
4 ; i1 operands.
5
6 %struct.X = type { i1, i1 }
7
8 @b = common global %struct.X zeroinitializer, align 4
9
10 define void @foo() {
11 entry:
12   store i1 0, i1* getelementptr inbounds (%struct.X, %struct.X* @b, i64 0, i32 0), align 4
13   store i1 0, i1* getelementptr inbounds (%struct.X, %struct.X* @b, i64 0, i32 1), align 1
14   ret void
15 }