Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / i486-fence-loop.ll
blob287638e0272a60c228b6fa8e0da82fb651ea7c52
1 ; RUN: llc -mtriple=i686-- -mcpu=i486 -o - %s | FileCheck %s
3 ; Main test here was that ISelDAG could cope with a MachineNode in the chain
4 ; from the first load to the "X86ISD::SUB". Previously it thought that meant no
5 ; cycle could be formed so it tried to use "sub (%eax), [[RHS]]".
7 define void @gst_atomic_queue_push(ptr %addr) {
8 ; CHECK-LABEL: gst_atomic_queue_push:
9 ; CHECK: movl (%eax), [[LHS:%e[a-z]+]]
10 ; CHECK: lock orl
11 ; CHECK: movl (%eax), [[RHS:%e[a-z]+]]
12 ; CHECK: cmpl [[LHS]], [[RHS]]
14 entry:
15   br label %while.body
17 while.body:
18   %0 = load volatile i32, ptr %addr, align 4
19   fence seq_cst
20   %1 = load volatile i32, ptr %addr, align 4
21   %cmp = icmp sgt i32 %1, %0
22   br i1 %cmp, label %while.body, label %if.then
24 if.then:
25   ret void