summaryrefslogtreecommitdiff
path: root/src/jit/jit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/jit.h')
-rw-r--r--src/jit/jit.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/jit/jit.h b/src/jit/jit.h
index 220294f825..c485ff0bea 100644
--- a/src/jit/jit.h
+++ b/src/jit/jit.h
@@ -699,11 +699,7 @@ inline unsigned int unsigned_abs(int x)
#ifdef _TARGET_64BIT_
inline size_t unsigned_abs(ssize_t x)
{
-#ifndef FEATURE_PAL
return ((size_t)abs(x));
-#else // !FEATURE_PAL
- return ((size_t)labs(x));
-#endif // !FEATURE_PAL
}
#endif // _TARGET_64BIT_