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

Side by Side Diff: crosstest/test_arith_frem.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: More whitespace change reversion 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
OLDNEW
1 target triple = "i686-pc-linux-gnu"
2
3 define float @_Z6myFremff(float %a, float %b) { 1 define float @_Z6myFremff(float %a, float %b) {
4 %rem = frem float %a, %b 2 %rem = frem float %a, %b
5 ret float %rem 3 ret float %rem
6 } 4 }
7 5
8 define double @_Z6myFremdd(double %a, double %b) { 6 define double @_Z6myFremdd(double %a, double %b) {
9 %rem = frem double %a, %b 7 %rem = frem double %a, %b
10 ret double %rem 8 ret double %rem
11 } 9 }
12 10
13 define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) { 11 define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) {
14 %rem = frem <4 x float> %a, %b 12 %rem = frem <4 x float> %a, %b
15 ret <4 x float> %rem 13 ret <4 x float> %rem
16 } 14 }
OLDNEW
« no previous file with comments | « crosstest/runtests.sh ('k') | crosstest/test_arith_sqrt.ll » ('j') | pydir/crosstest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698