| OLD | NEW |
| 1 ; This test is lowered from C code that does some simple aritmetic | 1 ; This test is lowered from C code that does some simple aritmetic |
| 2 ; with struct members. | 2 ; with struct members. |
| 3 | 3 |
| 4 ; TODO(kschimpf) Find out why lc2i is needed. | 4 ; TODO(kschimpf) Find out why lc2i is needed. |
| 5 ; REQUIRES: allow_llvm_ir_as_input | 5 ; REQUIRES: allow_llvm_ir_as_input |
| 6 ; RUN: %lc2i -i %s --args --verbose inst | FileCheck %s | 6 ; RUN: %lc2i -i %s --args --verbose inst -threads=0 | FileCheck %s |
| 7 | 7 |
| 8 define internal i32 @compute_important_function(i32 %v1, i32 %v2) { | 8 define internal i32 @compute_important_function(i32 %v1, i32 %v2) { |
| 9 entry: | 9 entry: |
| 10 %__2 = inttoptr i32 %v1 to i32* | 10 %__2 = inttoptr i32 %v1 to i32* |
| 11 %_v0 = load i32* %__2, align 1 | 11 %_v0 = load i32* %__2, align 1 |
| 12 | 12 |
| 13 ; CHECK: entry: | 13 ; CHECK: entry: |
| 14 ; CHECK-NEXT: %__2 = i32 %v1 | 14 ; CHECK-NEXT: %__2 = i32 %v1 |
| 15 ; CHECK-NEXT: %_v0 = load i32* {{.*}}, align 1 | 15 ; CHECK-NEXT: %_v0 = load i32* {{.*}}, align 1 |
| 16 | 16 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 %mul11 = mul i32 %mul9, %_v7 | 41 %mul11 = mul i32 %mul9, %_v7 |
| 42 %add4.neg = add i32 %mul, %_v0 | 42 %add4.neg = add i32 %mul, %_v0 |
| 43 %add = sub i32 %add4.neg, %_v3 | 43 %add = sub i32 %add4.neg, %_v3 |
| 44 %sub = sub i32 %add, %mul3 | 44 %sub = sub i32 %add, %mul3 |
| 45 %sub12 = sub i32 %sub, %mul11 | 45 %sub12 = sub i32 %sub, %mul11 |
| 46 ret i32 %sub12 | 46 ret i32 %sub12 |
| 47 | 47 |
| 48 ; CHECK: %sub12 = sub i32 %sub, %mul11 | 48 ; CHECK: %sub12 = sub i32 %sub, %mul11 |
| 49 ; CHECK-NEXT: ret i32 %sub12 | 49 ; CHECK-NEXT: ret i32 %sub12 |
| 50 } | 50 } |
| OLD | NEW |