mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
53624a2df5
This patch is mostly just refactoring a bunch of copy-and-pasted code, but it also adds a check that the call instructions are readnone or readonly. That check was already present for sin, cos, sqrt, log2, and exp2 calls, but it was missing for the rest of the builtins being handled in this code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161282 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
287 B
LLVM
11 lines
287 B
LLVM
; RUN: llc < %s -march=ppc32 | grep fnabs
|
|
|
|
declare double @fabs(double)
|
|
|
|
define double @test(double %X) {
|
|
%Y = call double @fabs( double %X ) readnone ; <double> [#uses=1]
|
|
%Z = fsub double -0.000000e+00, %Y ; <double> [#uses=1]
|
|
ret double %Z
|
|
}
|
|
|