diff options
| author | 2016-08-10 14:05:54 -0700 | |
|---|---|---|
| committer | 2016-08-10 14:05:54 -0700 | |
| commit | 0cf8d9c08bb77b0f527121b83e6a9dbb36d602f3 (patch) | |
| tree | dcdc448217614142e5327ca7a823e59030ae15ed /compiler/optimizing/intrinsics.h | |
| parent | 3f3201a89ec19257b3bc93c25b20abdcfe61f3e4 (diff) | |
Full enable new round implementation on x86/x86_64
Rationale:
Running JIT on Fugu does not always provide a constant area.
In such cases, we need to construct FP constants through stack.
This only applies to x86.
Test: 580-checker-round
BUG=26327751
Change-Id: I7e2c80dafbafbe647cfe9ecb039920bb534c666a
Diffstat (limited to 'compiler/optimizing/intrinsics.h')
| -rw-r--r-- | compiler/optimizing/intrinsics.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/optimizing/intrinsics.h b/compiler/optimizing/intrinsics.h index 3429a8fdbb..1a8eb58857 100644 --- a/compiler/optimizing/intrinsics.h +++ b/compiler/optimizing/intrinsics.h @@ -27,9 +27,6 @@ namespace art { class CompilerDriver; class DexFile; -// Temporary measure until we have caught up with the Java 7 definition of Math.round. b/26327751 -static constexpr bool kRoundIsPlusPointFive = false; - // Positive floating-point infinities. static constexpr uint32_t kPositiveInfinityFloat = 0x7f800000U; static constexpr uint64_t kPositiveInfinityDouble = UINT64_C(0x7ff0000000000000); |