diff options
author | Ian Lynagh <igloo@earth.li> | 2008-04-30 13:10:21 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-04-30 13:10:21 +0000 |
commit | 7dd753a02c3bdce61287b9ad2064daecf31e8258 (patch) | |
tree | 71c11aed41b01ef1128ada1d7fad08026a029dfd /compiler/nativeGen | |
parent | 106c9d26cc182df77ab833e5b672cf9b32642ec7 (diff) | |
download | haskell-7dd753a02c3bdce61287b9ad2064daecf31e8258.tar.gz |
Update a panic message
It was (panic "RegisterAlloc.joinToTargets"), but had since moved to
RegAllocLinear.makeRegMovementGraph.
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r-- | compiler/nativeGen/RegAllocLinear.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/RegAllocLinear.hs b/compiler/nativeGen/RegAllocLinear.hs index bc538a82fa..94789794fe 100644 --- a/compiler/nativeGen/RegAllocLinear.hs +++ b/compiler/nativeGen/RegAllocLinear.hs @@ -826,7 +826,7 @@ makeRegMovementGraph adjusted_assig dest_assig = expandNode vreg src $ lookupWithDefaultUFM_Directly dest_assig - (panic "RegisterAlloc.joinToTargets") + (panic "RegAllocLinear.makeRegMovementGraph") vreg in [ node | (vreg, src) <- ufmToList adjusted_assig |