Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 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: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep sub.*GLOBAL |
| 7 | |
| 8 | %GLOBAL = external global int |
| 9 | |
| 10 | int %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 | } |