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

Side by Side Diff: crosstest/test_cast_vectors.ll

Issue 973823003: Subzero: Run sandboxed cross tests, and do some cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix TODO. Fix accidentally reverted required change. Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « crosstest/test_cast_to_u1.ll ('k') | crosstest/test_fcmp.pnacl.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 target triple = "i686-pc-linux-gnu"
2
3 define <4 x float> @_Z4castIDv4_iDv4_fET0_T_(<4 x i32> %a) { 1 define <4 x float> @_Z4castIDv4_iDv4_fET0_T_(<4 x i32> %a) {
4 entry: 2 entry:
5 %0 = sitofp <4 x i32> %a to <4 x float> 3 %0 = sitofp <4 x i32> %a to <4 x float>
6 ret <4 x float> %0 4 ret <4 x float> %0
7 } 5 }
8 6
9 define <4 x i32> @_Z4castIDv4_fDv4_iET0_T_(<4 x float> %a) { 7 define <4 x i32> @_Z4castIDv4_fDv4_iET0_T_(<4 x float> %a) {
10 entry: 8 entry:
11 %0 = fptosi <4 x float> %a to <4 x i32> 9 %0 = fptosi <4 x float> %a to <4 x i32>
12 ret <4 x i32> %0 10 ret <4 x i32> %0
13 } 11 }
14 12
15 define <4 x float> @_Z4castIDv4_jDv4_fET0_T_(<4 x i32> %a) { 13 define <4 x float> @_Z4castIDv4_jDv4_fET0_T_(<4 x i32> %a) {
16 entry: 14 entry:
17 %0 = uitofp <4 x i32> %a to <4 x float> 15 %0 = uitofp <4 x i32> %a to <4 x float>
18 ret <4 x float> %0 16 ret <4 x float> %0
19 } 17 }
20 18
21 define <4 x i32> @_Z4castIDv4_fDv4_jET0_T_(<4 x float> %a) { 19 define <4 x i32> @_Z4castIDv4_fDv4_jET0_T_(<4 x float> %a) {
22 entry: 20 entry:
23 %0 = fptoui <4 x float> %a to <4 x i32> 21 %0 = fptoui <4 x float> %a to <4 x i32>
24 ret <4 x i32> %0 22 ret <4 x i32> %0
25 } 23 }
OLDNEW
« no previous file with comments | « crosstest/test_cast_to_u1.ll ('k') | crosstest/test_fcmp.pnacl.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698