From ac766dca8229d927fb569497b43bc4efd6afcd4a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 30 Apr 2005 04:41:27 +0000 Subject: [PATCH] add sin/cos tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21635 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Generic/intrinsics.ll | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/Generic/intrinsics.ll b/test/CodeGen/Generic/intrinsics.ll index ae0f3f7055f..f8a64f7cba6 100644 --- a/test/CodeGen/Generic/intrinsics.ll +++ b/test/CodeGen/Generic/intrinsics.ll @@ -1,13 +1,31 @@ ; RUN: llvm-as < %s | llc - +;; SQRT declare float %llvm.sqrt(float) declare double %llvm.sqrt(double) - - double %test_sqrt(float %F) { %G = call float %llvm.sqrt(float %F) %H = cast float %G to double %I = call double %llvm.sqrt(double %H) ret double %I } + +; SIN +declare float %sinf(float) +declare double %sin(double) +double %test_sin(float %F) { + %G = call float %sinf(float %F) + %H = cast float %G to double + %I = call double %sin(double %H) + ret double %I +} + +; COS +declare float %cosf(float) +declare double %cos(double) +double %test_cos(float %F) { + %G = call float %cosf(float %F) + %H = cast float %G to double + %I = call double %cos(double %H) + ret double %I +}