mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
7777a204e2
The C standard has historically not specified whether or not these functions should raise the inexact flag. Traditionally on Darwin, these functions *did* raise inexact, and the llvm lowerings followed that conventions. n1778 (C bindings for IEEE-754 (2008)) clarifies that these functions should not set inexact. This patch brings the lowerings for arm64 and x86 in line with the newly specified behavior. This also lets us fold some logic into TD patterns, which is nice. Differential Revision: http://reviews.llvm.org/D12969 llvm-svn: 248266
14 lines
471 B
LLVM
14 lines
471 B
LLVM
; RUN: llc < %s -march=x86-64 -mattr=+sse4.1,-avx | FileCheck %s --check-prefix=CHECK-HARD-FLOAT
|
|
; RUN: llc < %s -march=x86-64 -mattr=+sse4.1,-avx,+soft-float | FileCheck %s --check-prefix=CHECK-SOFT-FLOAT
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
declare float @llvm.floor.f32(float)
|
|
|
|
; CHECK-SOFT-FLOAT: callq floorf
|
|
; CHECK-HARD-FLOAT: roundss $9, %xmm0, %xmm0
|
|
define float @myfloor(float %a) {
|
|
%val = tail call float @llvm.floor.f32(float %a)
|
|
ret float %val
|
|
}
|