Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: tests_lit/llvm2ice_tests/store.ll

Issue 1387963002: Make sure that all globals are internal, except for "start" functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix new tests. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/llvm2ice_tests/square.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/store.ll
diff --git a/tests_lit/llvm2ice_tests/store.ll b/tests_lit/llvm2ice_tests/store.ll
index ec85020742667cabb1418bb04c33ad6c55316210..94931fba6f83a33122964252f4731b2e6c0c9400 100644
--- a/tests_lit/llvm2ice_tests/store.ll
+++ b/tests_lit/llvm2ice_tests/store.ll
@@ -4,7 +4,7 @@
; RUN: %p2i -i %s --args --verbose inst -threads=0 | FileCheck %s
-define void @store_i64(i32 %addr_arg) {
+define internal void @store_i64(i32 %addr_arg) {
entry:
%__1 = inttoptr i32 %addr_arg to i64*
store i64 1, i64* %__1, align 1
@@ -16,7 +16,7 @@ entry:
; CHECK-NEXT: ret void
}
-define void @store_i32(i32 %addr_arg) {
+define internal void @store_i32(i32 %addr_arg) {
entry:
%__1 = inttoptr i32 %addr_arg to i32*
store i32 1, i32* %__1, align 1
@@ -28,7 +28,7 @@ entry:
; CHECK-NEXT: ret void
}
-define void @store_i16(i32 %addr_arg) {
+define internal void @store_i16(i32 %addr_arg) {
entry:
%__1 = inttoptr i32 %addr_arg to i16*
store i16 1, i16* %__1, align 1
@@ -40,7 +40,7 @@ entry:
; CHECK-NEXT: ret void
}
-define void @store_i8(i32 %addr_arg) {
+define internal void @store_i8(i32 %addr_arg) {
entry:
%__1 = inttoptr i32 %addr_arg to i8*
store i8 1, i8* %__1, align 1
« no previous file with comments | « tests_lit/llvm2ice_tests/square.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698