[commit: ghc] wip/erikd/linker: fixup (a9b07c8)

git at git.haskell.org git at git.haskell.org
Sat May 21 10:40:48 UTC 2016


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/erikd/linker
Link       : http://ghc.haskell.org/trac/ghc/changeset/a9b07c801abc0f2d0a7124099d76cc088a8daaa3/ghc

>---------------------------------------------------------------

commit a9b07c801abc0f2d0a7124099d76cc088a8daaa3
Author: Erik de Castro Lopo <erikd at mega-nerd.com>
Date:   Sat May 21 20:35:51 2016 +1000

    fixup


>---------------------------------------------------------------

a9b07c801abc0f2d0a7124099d76cc088a8daaa3
 rts/linker/M32Alloc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rts/linker/M32Alloc.c b/rts/linker/M32Alloc.c
index 596cb7d..d5a9cb1 100644
--- a/rts/linker/M32Alloc.c
+++ b/rts/linker/M32Alloc.c
@@ -315,19 +315,19 @@ m32_alloc(size_t size, size_t alignment)
 // See the note titled "Compile Time Trickery" at the top of this file.
 
 void
-m32_allocator_init(void) GNUC3_ATTRIBUTE(__noreturn__)
+m32_allocator_init(void)
 {
     barf("%s: RTS_LINKER_USE_MMAP is %d", __func__, RTS_LINKER_USE_MMAP);
 }
 
 void
-m32_allocator_flush(void) GNUC3_ATTRIBUTE(__noreturn__)
+m32_allocator_flush(void)
 {
     barf("%s: RTS_LINKER_USE_MMAP is %d", __func__, RTS_LINKER_USE_MMAP);
 }
 
 void
-m32_free(void *addr STG_UNUSED, size_t size STG_UNUSED) GNUC3_ATTRIBUTE(__noreturn__)
+m32_free(void *addr STG_UNUSED, size_t size STG_UNUSED)
 {
     barf("%s: RTS_LINKER_USE_MMAP is %d", __func__, RTS_LINKER_USE_MMAP);
 }



More information about the ghc-commits mailing list