blob: 74233ebda05ca18ca8f7e86586187ed9ffe2da23 [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
6; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep sub.*GLOBAL
7
8%GLOBAL = external global int
9
10int %test(int* %P1, int* %P2, int* %P3) {
11 %L = load int* %GLOBAL
12 store int 12, int* %P2
13 %Y = load int* %P3
14 %Z = sub int %Y, %L
15 ret int %Z
16}