diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-09-21 17:56:14 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-09-21 18:14:56 +0100 |
commit | ef3339cf634aceddae43cc42bfe545a5461ebe36 (patch) | |
tree | 8c69ae543ac56076234c6530816318d9696b7a72 /rts/Interpreter.c | |
parent | 5f01b6dd095955e9a52f5624213a7c54dc5e1a8c (diff) | |
download | haskell-ef3339cf634aceddae43cc42bfe545a5461ebe36.tar.gz |
Convert more RTS macros to functions
No size changes in the non-debug object files
Diffstat (limited to 'rts/Interpreter.c')
-rw-r--r-- | rts/Interpreter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Interpreter.c b/rts/Interpreter.c index f3e070000b..83973e8c9b 100644 --- a/rts/Interpreter.c +++ b/rts/Interpreter.c @@ -339,7 +339,7 @@ eval_obj: { StgUpdateFrame *__frame; __frame = (StgUpdateFrame *)Sp; - SET_INFO(__frame, (StgInfoTable *)&stg_upd_frame_info); + SET_INFO((StgClosure *)__frame, (StgInfoTable *)&stg_upd_frame_info); __frame->updatee = (StgClosure *)(ap); } |