summaryrefslogtreecommitdiff
path: root/gas/as.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2005-03-01 02:00:15 +0000
committerAlan Modra <amodra@bigpond.net.au>2005-03-01 02:00:15 +0000
commit8cb56db73392dadc5bd477e0ec1f42963ccef520 (patch)
tree967790f59f4d69f51adc25133569e25cfe5587e0 /gas/as.h
parent34c5cb33c4c2c22d36412f63a69f9cabf82cb54a (diff)
downloadbinutils-redhat-8cb56db73392dadc5bd477e0ec1f42963ccef520.tar.gz
* as.h (assert): Warning fix.
* expr.c (expr): Correct assertion. * read.c (s_comm_internal): Remove assertion. * write.c (relax_segment): Enable vma assertion only for BFD_ASSEMBLER. (fixup_segment): Remove assertion. * config/tc-dlx.c (machine_ip): Remove untrue assertions. (md_apply_fix3): Likewise. * config/tc-i370.c (md_begin): Correct assertion. (i370_macro): Warning fix for assertion.
Diffstat (limited to 'gas/as.h')
-rw-r--r--gas/as.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/as.h b/gas/as.h
index a232a4b3ad..3c764f5573 100644
--- a/gas/as.h
+++ b/gas/as.h
@@ -104,7 +104,8 @@ extern void *alloca ();
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
#define __PRETTY_FUNCTION__ ((char*)0)
#endif
-#define assert(P) ((P) ? 0 : (as_assert (__FILE__, __LINE__, __PRETTY_FUNCTION__), 0))
+#define assert(P) \
+ ((void) ((P) ? 0 : (as_assert (__FILE__, __LINE__, __PRETTY_FUNCTION__), 0)))
#undef abort
#define abort() as_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)