diff options
author | Karel Gardas <karel.gardas@centrum.cz> | 2011-08-20 23:49:48 +0200 |
---|---|---|
committer | Karel Gardas <karel.gardas@centrum.cz> | 2011-08-21 08:50:57 +0200 |
commit | bab9a72d7f12a88bb38677db03ed4c956d0a7d99 (patch) | |
tree | c0a703e2770e7cf062904641f79cda08f6c9ca2d /compiler/nativeGen/X86/RegInfo.hs | |
parent | 2906db6c3a3f1000bd7347c7d8e45e65eb2806cb (diff) | |
download | haskell-bab9a72d7f12a88bb38677db03ed4c956d0a7d99.tar.gz |
enhance ArchARM with ISA and ISA extensions
This patch enhances ArchARM with ARM ISA and ISA extensions details
as is suggested in the comment in Platform.hs file. The patch is needed
by future patch which will use ARM ISA information in order to pass
appropriate command-line option to the LLVM llc tool.
Diffstat (limited to 'compiler/nativeGen/X86/RegInfo.hs')
-rw-r--r-- | compiler/nativeGen/X86/RegInfo.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/X86/RegInfo.hs b/compiler/nativeGen/X86/RegInfo.hs index c09ebc5b15..36b749ffda 100644 --- a/compiler/nativeGen/X86/RegInfo.hs +++ b/compiler/nativeGen/X86/RegInfo.hs @@ -58,7 +58,7 @@ normalRegColors platform ArchPPC -> panic "X86 normalRegColors ArchPPC" ArchPPC_64 -> panic "X86 normalRegColors ArchPPC_64" ArchSPARC -> panic "X86 normalRegColors ArchSPARC" - ArchARM -> panic "X86 normalRegColors ArchARM" + ArchARM _ _ -> panic "X86 normalRegColors ArchARM" ArchUnknown -> panic "X86 normalRegColors ArchUnknown" fpRegColors :: [(Reg,String)] |