Index: tests_lit/llvm2ice_tests/global.ll |
diff --git a/tests_lit/llvm2ice_tests/global.ll b/tests_lit/llvm2ice_tests/global.ll |
index ba5471e114a0f7a8e8289f5be9f8e87de5c12c0b..0d791ccc4a67c4ec848b0884f4fe8a744e0c6f85 100644 |
--- a/tests_lit/llvm2ice_tests/global.ll |
+++ b/tests_lit/llvm2ice_tests/global.ll |
@@ -1,14 +1,11 @@ |
; Trivial test of the use of internal versus external global |
-; functions. |
+; variables. |
; RUN: %llvm2ice --verbose inst %s | FileCheck %s |
; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
-; Note: We don't run this test using a PNaCl bitcode file, because |
-; external globals are not in the PNaCl ABI. |
- |
-@intern_global = global [4 x i8] [i8 0, i8 0, i8 0, i8 12], align 4 |
+@intern_global = internal global [4 x i8] c"\00\00\00\0C", align 4 |
@extern_global = external global [4 x i8] |
define i32 @test_intern_global() { |