~ubuntu-branches/ubuntu/trusty/haskell-llvm-base/trusty-proposed

« back to all changes in this revision

Viewing changes to LLVM/Target/SystemZ.hs

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2012-03-11 15:44:32 UTC
  • Revision ID: package-import@ubuntu.com-20120311154432-oewynu19bajz4ccb
Tags: upstream-3.0.0.0
ImportĀ upstreamĀ versionĀ 3.0.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{-# LANGUAGE ForeignFunctionInterface #-}
 
2
module LLVM.Target.SystemZ(initializeTarget) where
 
3
 
 
4
initializeTarget :: IO ()
 
5
initializeTarget = do
 
6
    initializeSystemZTargetInfo
 
7
    initializeSystemZTarget
 
8
 
 
9
foreign import ccall unsafe "LLVMInitializeSystemZTargetInfo" initializeSystemZTargetInfo :: IO ()
 
10
foreign import ccall unsafe "LLVMInitializeSystemZTarget" initializeSystemZTarget :: IO ()