blob: 6925bb01a4c8939ed6407619064932a99269cd81 [file] [log] [blame]
Chris Lattnerf60513f2005-01-17 06:25:59 +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
Chris Lattner2b5d3cf2005-08-19 01:14:40 +00006; RUN: llvm-as < %s | llc -march=x86 | not grep 'sub.*GLOBAL'
Chris Lattnerf60513f2005-01-17 06:25:59 +00007
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}