diff options
author | Siddhanathan Shanmugam <siddhanathan@gmail.com> | 2015-09-11 16:10:41 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-09-11 18:33:32 -0500 |
commit | 7ad4b3c1419fefbb01fd4643f374150abd1d11e2 (patch) | |
tree | 46fed56f87cfd2b32ce5ec2537b04be95cbbda23 /rts/Interpreter.c | |
parent | 4275028c744ef8ee6bbc26c3a301ef2e3e8708a0 (diff) | |
download | haskell-7ad4b3c1419fefbb01fd4643f374150abd1d11e2.tar.gz |
s/StgArrWords/StgArrBytes/
Rename StgArrWords to StgArrBytes (see Trac #8552)
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D1233
GHC Trac Issues: #8552
Diffstat (limited to 'rts/Interpreter.c')
-rw-r--r-- | rts/Interpreter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Interpreter.c b/rts/Interpreter.c index 8a608ec1ba..573e4991f7 100644 --- a/rts/Interpreter.c +++ b/rts/Interpreter.c @@ -843,7 +843,7 @@ run_BCO: case bci_BRK_FUN: { int arg1_brk_array, arg2_array_index, arg3_freeVars; - StgArrWords *breakPoints; + StgArrBytes *breakPoints; int returning_from_break; // are we resuming execution from a breakpoint? // if yes, then don't break this time around StgClosure *ioAction; // the io action to run at a breakpoint @@ -864,7 +864,7 @@ run_BCO: // and continue executing if (!returning_from_break) { - breakPoints = (StgArrWords *) BCO_PTR(arg1_brk_array); + breakPoints = (StgArrBytes *) BCO_PTR(arg1_brk_array); // stop the current thread if either the // "rts_stop_next_breakpoint" flag is true OR if the |