summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/SPARC/CodeGen.hs
diff options
context:
space:
mode:
authorDavid Terei <davidterei@gmail.com>2011-12-22 14:40:22 -0800
committerDavid Terei <davidterei@gmail.com>2012-01-05 17:05:42 -0800
commit1cb4a07cf284444ed89057f4661db100ea740dc5 (patch)
treef2308443d9f2a0f9bb4c74bcbc7334f3a69247e2 /compiler/nativeGen/SPARC/CodeGen.hs
parent9ee9e518fe485107c9a21fed68a7dcc86fe08b4c (diff)
downloadhaskell-1cb4a07cf284444ed89057f4661db100ea740dc5.tar.gz
Remove unused argument field on CmmJump
Diffstat (limited to 'compiler/nativeGen/SPARC/CodeGen.hs')
-rw-r--r--compiler/nativeGen/SPARC/CodeGen.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/SPARC/CodeGen.hs b/compiler/nativeGen/SPARC/CodeGen.hs
index ff1e9f2eb2..c37cdd6760 100644
--- a/compiler/nativeGen/SPARC/CodeGen.hs
+++ b/compiler/nativeGen/SPARC/CodeGen.hs
@@ -141,7 +141,7 @@ stmtToInstrs stmt = case stmt of
CmmBranch id -> genBranch id
CmmCondBranch arg id -> genCondJump id arg
CmmSwitch arg ids -> genSwitch arg ids
- CmmJump arg _ -> genJump arg
+ CmmJump arg -> genJump arg
CmmReturn _
-> panic "stmtToInstrs: return statement should have been cps'd away"