diff options
author | ross <unknown> | 2004-10-26 17:48:39 +0000 |
---|---|---|
committer | ross <unknown> | 2004-10-26 17:48:39 +0000 |
commit | eb041e812156e9ac601b8c1f73fa43379fd0a2b4 (patch) | |
tree | a8645e25039cd23a8eb07c3c8547a9a0e290934e /ghc | |
parent | 2ac652a9bcd7a224f5680cd28848211b9c385088 (diff) | |
download | haskell-eb041e812156e9ac601b8c1f73fa43379fd0a2b4.tar.gz |
[project @ 2004-10-26 17:48:39 by ross]
bind acosDouble to acos(), rather than asin()
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/compiler/cmm/PprC.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/cmm/PprC.hs b/ghc/compiler/cmm/PprC.hs index 44fe7aeee9..421b557a2c 100644 --- a/ghc/compiler/cmm/PprC.hs +++ b/ghc/compiler/cmm/PprC.hs @@ -523,7 +523,7 @@ pprCallishMachOp_for_C mop MO_F64_Cosh -> ptext SLIT("cosh") MO_F64_Tanh -> ptext SLIT("tanh") MO_F64_Asin -> ptext SLIT("asin") - MO_F64_Acos -> ptext SLIT("asin") + MO_F64_Acos -> ptext SLIT("acos") MO_F64_Atan -> ptext SLIT("atan") MO_F64_Log -> ptext SLIT("log") MO_F64_Exp -> ptext SLIT("exp") |