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

Unified Diff: tests_lit/llvm2ice_tests/convert.ll

Issue 1161543005: Subzero: Changes needed for LLVM 3.7 integration. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 7 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/callindirect.pnacl.ll ('k') | tests_lit/llvm2ice_tests/fp.pnacl.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/convert.ll
diff --git a/tests_lit/llvm2ice_tests/convert.ll b/tests_lit/llvm2ice_tests/convert.ll
index 7f039949e77e3614cd9dc358f08935d909ce761a..1676b5c056eb0dead9e5c47deeed1b53364b24d6 100644
--- a/tests_lit/llvm2ice_tests/convert.ll
+++ b/tests_lit/llvm2ice_tests/convert.ll
@@ -15,7 +15,7 @@
define void @from_int8() {
entry:
%__0 = bitcast [1 x i8]* @i8v to i8*
- %v0 = load i8* %__0, align 1
+ %v0 = load i8, i8* %__0, align 1
%v1 = sext i8 %v0 to i16
%__3 = bitcast [2 x i8]* @i16v to i16*
store i16 %v1, i16* %__3, align 1
@@ -41,7 +41,7 @@ entry:
define void @from_int16() {
entry:
%__0 = bitcast [2 x i8]* @i16v to i16*
- %v0 = load i16* %__0, align 1
+ %v0 = load i16, i16* %__0, align 1
%v1 = trunc i16 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
@@ -65,7 +65,7 @@ entry:
define void @from_int32() {
entry:
%__0 = bitcast [4 x i8]* @i32v to i32*
- %v0 = load i32* %__0, align 1
+ %v0 = load i32, i32* %__0, align 1
%v1 = trunc i32 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
@@ -87,7 +87,7 @@ entry:
define void @from_int64() {
entry:
%__0 = bitcast [8 x i8]* @i64v to i64*
- %v0 = load i64* %__0, align 1
+ %v0 = load i64, i64* %__0, align 1
%v1 = trunc i64 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
@@ -109,7 +109,7 @@ entry:
define void @from_uint8() {
entry:
%__0 = bitcast [1 x i8]* @u8v to i8*
- %v0 = load i8* %__0, align 1
+ %v0 = load i8, i8* %__0, align 1
%v1 = zext i8 %v0 to i16
%__3 = bitcast [2 x i8]* @i16v to i16*
store i16 %v1, i16* %__3, align 1
@@ -134,7 +134,7 @@ entry:
define void @from_uint16() {
entry:
%__0 = bitcast [2 x i8]* @u16v to i16*
- %v0 = load i16* %__0, align 1
+ %v0 = load i16, i16* %__0, align 1
%v1 = trunc i16 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
@@ -158,7 +158,7 @@ entry:
define void @from_uint32() {
entry:
%__0 = bitcast [4 x i8]* @u32v to i32*
- %v0 = load i32* %__0, align 1
+ %v0 = load i32, i32* %__0, align 1
%v1 = trunc i32 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
@@ -180,7 +180,7 @@ entry:
define void @from_uint64() {
entry:
%__0 = bitcast [8 x i8]* @u64v to i64*
- %v0 = load i64* %__0, align 1
+ %v0 = load i64, i64* %__0, align 1
%v1 = trunc i64 %v0 to i8
%__3 = bitcast [1 x i8]* @i8v to i8*
store i8 %v1, i8* %__3, align 1
« no previous file with comments | « tests_lit/llvm2ice_tests/callindirect.pnacl.ll ('k') | tests_lit/llvm2ice_tests/fp.pnacl.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698