diff options
Diffstat (limited to 'testsuite/tests/codeGen/should_run/5149.hs')
-rw-r--r-- | testsuite/tests/codeGen/should_run/5149.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/codeGen/should_run/5149.hs b/testsuite/tests/codeGen/should_run/5149.hs new file mode 100644 index 0000000000..c0c88e3015 --- /dev/null +++ b/testsuite/tests/codeGen/should_run/5149.hs @@ -0,0 +1,8 @@ +{-# LANGUAGE MagicHash,GHCForeignImportPrim,UnliftedFFITypes #-} +module Main where + +import GHC.Exts + +foreign import prim "f5149" f :: Int# -> Int# -> Double# -> Int# + +main = print (I# (f 1# 2# 1.0##)) |