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

Unified Diff: runtime/szrt.c

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, 10 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 | « pydir/run-pnacl-sz.py ('k') | src/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/szrt.c
diff --git a/runtime/szrt.c b/runtime/szrt.c
index 8c84a067a0c80db506e6505c6efe04541ad1e7cf..009ebe3b013a9e7ab2475829fbcb4310970138ec 100644
--- a/runtime/szrt.c
+++ b/runtime/szrt.c
@@ -16,27 +16,9 @@
#include <stdint.h>
-// TODO(stichnot): The various NaN cross tests try to map Subzero's
-// undefined behavior to the same as llc's undefined behavior, as
-// observed by the cross tests. This will have to be kept up to date
-// with any future changes to llc, and may also have to be different
-// for different targets. It would be better to find a more
-// appropriate set of llc options when building the Subzero runtime.
-//
-// We test for NaN using "Value==Value" instead of using isnan(Value)
-// to avoid an external dependency on fpclassify().
-
-uint32_t __Sz_fptoui_f32_i32(float Value) {
- if (Value == Value) // NaNaN
- return (uint32_t)Value;
- return 0x80000000;
-}
+uint32_t __Sz_fptoui_f32_i32(float value) { return (uint32_t)value; }
-uint32_t __Sz_fptoui_f64_i32(double Value) {
- if (Value == Value) // NaNaN
- return (uint32_t)Value;
- return 0x80000000;
-}
+uint32_t __Sz_fptoui_f64_i32(double value) { return (uint32_t)value; }
uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; }
« no previous file with comments | « pydir/run-pnacl-sz.py ('k') | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698