summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/merge-consecutive-stores-i1.ll
blob: 95ff7752c1cad4a4687c5adab0b28d464f3d9a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc  -mtriple=x86_64-- < %s

; Ensure that MergeConsecutiveStores doesn't crash when dealing with
; i1 operands.

%struct.X = type { i1, i1 }

@b = common global %struct.X zeroinitializer, align 4

define void @foo() {
entry:
  store i1 0, ptr @b, align 4
  store i1 0, ptr getelementptr inbounds (%struct.X, ptr @b, i64 0, i32 1), align 1
  ret void
}