mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
3f169a13b7
not just any occurrence of "pow". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21620 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
599 B
LLVM
19 lines
599 B
LLVM
; Test that the StrCatOptimizer works correctly
|
|
; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*pow'
|
|
|
|
declare double %pow(double,double)
|
|
%fpstorage = global double 5.0
|
|
|
|
implementation ; Functions:
|
|
|
|
int %main () {
|
|
%fpnum = load double* %fpstorage;
|
|
%one = call double %pow(double 1.0, double %fpnum)
|
|
%two = call double %pow(double %one, double 0.5)
|
|
%three = call double %pow(double %two, double 1.0)
|
|
%four = call double %pow(double %three, double -1.0)
|
|
%five = call double %pow(double %four, double 0.0)
|
|
%result = cast double %five to int
|
|
ret int %result
|
|
}
|