[GHC] #8271: missing semicolon in rts/Linker.c

#8271: missing semicolon in rts/Linker.c ------------------------------------+------------------------------------- Reporter: rwbarton | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.7 Keywords: | Operating System: Unknown/Multiple Architecture: Unknown/Multiple | Type of failure: None/Unknown Difficulty: Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | ------------------------------------+------------------------------------- {{{ --- /home/rwbarton/dist/ghc4/rts/Linker.c 2013-09-12 00:02:00.000000000 -0400 +++ /tmp/Linker.c 2013-09-12 00:14:57.000000000 -0400 @@ -1706,7 +1706,7 @@ return v; } } - v = dlsym(hdl, symbol) + v = dlsym(hdl, symbol); RELEASE_LOCK(&dl_mutex); return v; } }}} The missing ; is harmless when LOCK_DEBUG is not defined, because then the expansion of RELEASE_LOCK starts with a ; token. -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/8271 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#8271: missing semicolon in rts/Linker.c -------------------------------------+------------------------------------ Reporter: rwbarton | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Runtime System | Version: 7.7 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by rwbarton): * status: new => patch -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/8271#comment:1 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#8271: missing semicolon in rts/Linker.c -------------------------------------+------------------------------------ Reporter: rwbarton | Owner: jstolarek Type: bug | Status: patch Priority: normal | Milestone: Component: Runtime System | Version: 7.7 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by jstolarek): * owner: => jstolarek -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/8271#comment:2 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler

#8271: missing semicolon in rts/Linker.c
-------------------------------------+------------------------------------
Reporter: rwbarton | Owner: jstolarek
Type: bug | Status: patch
Priority: normal | Milestone:
Component: Runtime System | Version: 7.7
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture: Unknown/Multiple
Type of failure: None/Unknown | Difficulty: Unknown
Test Case: | Blocked By:
Blocking: | Related Tickets:
-------------------------------------+------------------------------------
Comment (by Jan Stolarek

#8271: missing semicolon in rts/Linker.c -------------------------------------+------------------------------------ Reporter: rwbarton | Owner: jstolarek Type: bug | Status: closed Priority: normal | Milestone: Component: Runtime System | Version: 7.7 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by jstolarek): * status: patch => closed * resolution: => fixed -- Ticket URL: http://ghc.haskell.org/trac/ghc/ticket/8271#comment:4 GHC http://www.haskell.org/ghc/ The Glasgow Haskell Compiler
participants (1)
-
GHC