diff options
author | David Terei <davidterei@gmail.com> | 2011-12-22 14:48:56 -0800 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2012-01-05 17:05:44 -0800 |
commit | 419af4e718b3c79ee814fb36bd6f5da5e06e7001 (patch) | |
tree | 509f68331328c1147e16ea019260e85dacf50516 /compiler/codeGen | |
parent | ccba0c2275f16d816e212448466a60866fe5183f (diff) | |
download | haskell-419af4e718b3c79ee814fb36bd6f5da5e06e7001.tar.gz |
Remove unused arg field of CmmReturn
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/CgMonad.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CgMonad.lhs b/compiler/codeGen/CgMonad.lhs index 4617aaa8a3..c05019e3ac 100644 --- a/compiler/codeGen/CgMonad.lhs +++ b/compiler/codeGen/CgMonad.lhs @@ -252,7 +252,7 @@ isJump :: CmmStmt -> Bool isJump (CmmJump _ ) = True isJump (CmmBranch _ ) = True isJump (CmmSwitch _ _) = True -isJump (CmmReturn _ ) = True +isJump (CmmReturn ) = True isJump _ = False isOrdinaryStmt :: CgStmt -> Bool |