xref: /llvm-project/llvm/test/CodeGen/X86/2005-01-17-CycleInDAG.ll (revision 2f448bf509432c1a19ec46ab8cbc7353c03c6280)
1; This testcase was distilled from 132.ijpeg.  Bsaically we cannot fold the
2; load into the sub instruction here as it induces a cycle in the dag, which
3; is invalid code (there is no correct way to order the instruction).  Check
4; that we do not fold the load into the sub.
5
6; RUN: llc < %s -mtriple=i686-- | FileCheck %s
7
8@GLOBAL = external dso_local global i32
9
10define i32 @test(ptr %P1, ptr %P2, ptr %P3) nounwind {
11; CHECK-LABEL: test:
12entry:
13  %L = load i32, ptr @GLOBAL
14  store i32 12, ptr %P2
15  %Y = load i32, ptr %P3
16  %Z = sub i32 %Y, %L
17  ret i32 %Z
18; CHECK-NOT: {{sub.*GLOBAL}}
19}
20
21