| OLD | NEW |
| 1 ; Trivial test of the use of internal versus external global | 1 ; Trivial test of the use of internal versus external global |
| 2 ; variables. | 2 ; variables. |
| 3 | 3 |
| 4 ; TODO(kschimpf) find out why lc2i is needed. | 4 ; TODO(kschimpf) find out why lc2i is needed. |
| 5 ; RUN: %lc2i -i %s --args --verbose inst | FileCheck %s | 5 ; REQUIRES: allow_llvm_ir_as_input |
| 6 ; RUN: %lc2i -i %s --args --verbose inst | %iflc FileCheck %s |
| 6 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s | 7 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
| 7 | 8 |
| 8 ; Note: PNaCl ABI Doesn't allow external globals. Hence, not tested. | 9 ; Note: PNaCl ABI Doesn't allow external globals. Hence, not tested. |
| 9 @intern_global = internal global [4 x i8] c"\00\00\00\0C", align 4 | 10 @intern_global = internal global [4 x i8] c"\00\00\00\0C", align 4 |
| 10 | 11 |
| 11 define i32 @test_intern_global() { | 12 define i32 @test_intern_global() { |
| 12 ; CHECK: define i32 @test_intern_global | 13 ; CHECK: define i32 @test_intern_global |
| 13 entry: | 14 entry: |
| 14 %__1 = bitcast [4 x i8]* @intern_global to i32* | 15 %__1 = bitcast [4 x i8]* @intern_global to i32* |
| 15 %v0 = load i32* %__1, align 1 | 16 %v0 = load i32* %__1, align 1 |
| 16 ret i32 %v0 | 17 ret i32 %v0 |
| 17 } | 18 } |
| 18 | 19 |
| 19 ; ERRORS-NOT: ICE translation error | 20 ; ERRORS-NOT: ICE translation error |
| OLD | NEW |