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

Side by Side Diff: crosstest/test_fcmp.pnacl.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_vectors.ll ('k') | crosstest/test_icmp_i1vec.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 ; This file is extracted from fp.pnacl.ll and vector-fcmp.ll in the lit 1 ; This file is extracted from fp.pnacl.ll and vector-fcmp.ll in the lit
4 ; tests, with the "internal" attribute removed from the functions. 2 ; tests, with the "internal" attribute removed from the functions.
5 3
6 define i32 @fcmpFalseFloat(float %a, float %b) { 4 define i32 @fcmpFalseFloat(float %a, float %b) {
7 entry: 5 entry:
8 %cmp = fcmp false float %a, %b 6 %cmp = fcmp false float %a, %b
9 %cmp.ret_ext = zext i1 %cmp to i32 7 %cmp.ret_ext = zext i1 %cmp to i32
10 ret i32 %cmp.ret_ext 8 ret i32 %cmp.ret_ext
11 } 9 }
12 ; CHECK: fcmpFalseFloat: 10 ; CHECK: fcmpFalseFloat:
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 } 461 }
464 462
465 define <4 x i32> @fcmpUnoVector(<4 x float> %a, <4 x float> %b) { 463 define <4 x i32> @fcmpUnoVector(<4 x float> %a, <4 x float> %b) {
466 entry: 464 entry:
467 %res.trunc = fcmp uno <4 x float> %a, %b 465 %res.trunc = fcmp uno <4 x float> %a, %b
468 %res = sext <4 x i1> %res.trunc to <4 x i32> 466 %res = sext <4 x i1> %res.trunc to <4 x i32>
469 ret <4 x i32> %res 467 ret <4 x i32> %res
470 ; CHECK-LABEL: fcmpUnoVector: 468 ; CHECK-LABEL: fcmpUnoVector:
471 ; CHECK: cmpunordps 469 ; CHECK: cmpunordps
472 } 470 }
OLDNEW
« no previous file with comments | « crosstest/test_cast_vectors.ll ('k') | crosstest/test_icmp_i1vec.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698