]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR go/90614 (gcc-9.1.0/libgo/go/syscall/wait.c:54:22: error: unused parameter...
authorIan Lance Taylor <ian@gcc.gnu.org>
Mon, 27 May 2019 00:10:22 +0000 (00:10 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Mon, 27 May 2019 00:10:22 +0000 (00:10 +0000)
PR go/90614
    syscall: avoid unused parameter error if WIFCONTINUED not defined

    Fixes https://gcc.gnu.org/PR90614

    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/178997

From-SVN: r271637

libgo/go/syscall/wait.c

index 0b234d0c35b991abebeb6f5c5ab171f520504abb..39bc035e979d4df403130aa5afc3482b58b6a27e 100644 (file)
@@ -51,7 +51,7 @@ extern _Bool Continued (uint32_t *w)
   __asm__ (GOSYM_PREFIX "syscall.WaitStatus.Continued");
 
 _Bool
-Continued (uint32_t *w)
+Continued (uint32_t *w __attribute__ ((unused)))
 {
   return WIFCONTINUED (*w) != 0;
 }