9748af459b87a68632b867a5aaa23bbb1a627f29
[ghc-hetmet.git] / ghc / tests / codeGen / should_run / cg029.hs
1 module Main(main) where
2
3 -- In 0.19, we lost the ability to do ccalls with more than 6 arguments
4 -- on the Sparc.  Just to make sure it never happens again...
5
6
7 main = 
8         _ccall_ printf "Testing %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d\n"
9         (01::Int) (02::Int) (03::Int) (04::Int) (05::Int) (06::Int) (07::Int) (08::Int)
10         (11::Int) (12::Int) (13::Int) (14::Int) (15::Int) (16::Int) (17::Int) (18::Int)
11         (21::Int) (22::Int) (23::Int) (24::Int) (25::Int) (26::Int) (27::Int) (28::Int)
12         (31::Int) (32::Int) (33::Int) (34::Int) (35::Int) (36::Int) (37::Int) (38::Int)
13         >>
14         return ()