From 0242db993f8ad0a0de16dafc4ebd35bb6190c833 Mon Sep 17 00:00:00 2001 From: Tsukasa OI Date: Wed, 21 Sep 2022 13:43:17 +0000 Subject: RISC-V: Fix riscv_set_tso declaration To avoid -Werror=strict-prototypes, this commit changes () to (void). This is because "()" possibly means a function prototype with indeterminate arguments on old C standards. gas/ChangeLog: * config/tc-riscv.c (riscv_set_tso): Fix declaration. --- gas/config/tc-riscv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas') diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c index 42d7bf6..5411d68 100644 --- a/gas/config/tc-riscv.c +++ b/gas/config/tc-riscv.c @@ -260,7 +260,7 @@ riscv_set_rvc (bool rvc_value) /* Turn on the tso flag for elf_flags once we have enabled ztso extension. */ static void -riscv_set_tso () +riscv_set_tso (void) { elf_flags |= EF_RISCV_TSO; } -- cgit v1.1