[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Sink / fence.ll
blob09aa565d88f806ac94c19e4637ba4088134e0672
1 ; RUN: opt -S -sink < %s | FileCheck %s
2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-unknown-linux-gnu"
5 define void @test1(i32* ()*) {
6 entry:
7   %1 = call i32* %0() #0
8   fence syncscope("singlethread") seq_cst
9   %2 = load i32, i32* %1, align 4
10   fence syncscope("singlethread") seq_cst
11   %3 = icmp eq i32 %2, 0
12   br i1 %3, label %fail, label %pass
14 fail:                                             ; preds = %top
15   br label %pass
17 pass:                                             ; preds = %fail, %top
18   ret void
21 ; CHECK-LABEL: @test1(
22 ; CHECK:  %[[call:.*]] = call i32* %0()
23 ; CHECK:  fence syncscope("singlethread") seq_cst
24 ; CHECK:  load i32, i32* %[[call]], align 4
25 ; CHECK:  fence syncscope("singlethread") seq_cst
28 attributes #0 = { nounwind readnone }