diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 00:09:05 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 00:09:05 +0000 |
commit | e8043f339e23328e3457696589edaa1ab7d60a64 (patch) | |
tree | 6bfb08be5e9c2274ec5bd979974237849cd942ab | |
parent | 92ee78e03c3670f56ebbbbfb0f67a00f9ea1305f (diff) | |
download | haskell-e8043f339e23328e3457696589edaa1ab7d60a64.tar.gz |
SPARC NCG: Add Pwr callish mach op
-rw-r--r-- | compiler/nativeGen/MachCodeGen.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/nativeGen/MachCodeGen.hs b/compiler/nativeGen/MachCodeGen.hs index cac9f17426..5f973ef1b6 100644 --- a/compiler/nativeGen/MachCodeGen.hs +++ b/compiler/nativeGen/MachCodeGen.hs @@ -3863,6 +3863,7 @@ outOfLineFloatOp_table mop MO_F32_Exp -> fsLit "expf" MO_F32_Log -> fsLit "logf" MO_F32_Sqrt -> fsLit "sqrtf" + MO_F32_Pwr -> fsLit "powf" MO_F32_Sin -> fsLit "sinf" MO_F32_Cos -> fsLit "cosf" @@ -3879,6 +3880,7 @@ outOfLineFloatOp_table mop MO_F64_Exp -> fsLit "exp" MO_F64_Log -> fsLit "log" MO_F64_Sqrt -> fsLit "sqrt" + MO_F64_Pwr -> fsLit "pow" MO_F64_Sin -> fsLit "sin" MO_F64_Cos -> fsLit "cos" |