blob: fe6674da041f5ceddb54f71e19edb56f0b921239 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; 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
Dan Gohman0a063102009-09-08 23:54:48 +00006; RUN: llc < %s -march=x86 | not grep sub.*GLOBAL
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
Tanya Lattner348c6182008-03-25 04:26:08 +00008@GLOBAL = external global i32 ; <i32*> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009
Chris Lattner456805a2010-03-02 18:56:03 +000010define i32 @test(i32* %P1, i32* %P2, i32* %P3) nounwind {
Tanya Lattner348c6182008-03-25 04:26:08 +000011 %L = load i32* @GLOBAL ; <i32> [#uses=1]
12 store i32 12, i32* %P2
13 %Y = load i32* %P3 ; <i32> [#uses=1]
14 %Z = sub i32 %Y, %L ; <i32> [#uses=1]
15 ret i32 %Z
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
Tanya Lattner348c6182008-03-25 04:26:08 +000017