diff options
author | Jakub Jelinek <jakub@redhat.com> | 2020-11-06 09:52:59 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-11-06 09:52:59 +0100 |
commit | 344106a966857a7d3d9109b66e0acb2efb5d1cd8 (patch) | |
tree | a69de0f5d054393e1033ab562141aefd23973d95 /gcc | |
parent | 2210bf6dec4a9868c828af546890805cac353f84 (diff) | |
download | gcc-344106a966857a7d3d9109b66e0acb2efb5d1cd8.zip gcc-344106a966857a7d3d9109b66e0acb2efb5d1cd8.tar.gz gcc-344106a966857a7d3d9109b66e0acb2efb5d1cd8.tar.bz2 |
c-common: Remove DEBUG_FUNCTION from verify_sequence_points
While perhaps the function name might suggest that it is a verification/debugging
only routine, it is actually implementation of the -Wsequence-point warning
and so doesn't need the DEBUG_FUNCTION macro on it.
2020-11-06 Jakub Jelinek <jakub@redhat.com>
* c-common.c (verify_sequence_points): Remove DEBUG_FUNCTION.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-family/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index d56238a..232a479 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -2045,7 +2045,7 @@ verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp, /* Try to warn for undefined behavior in EXPR due to missing sequence points. */ -DEBUG_FUNCTION void +void verify_sequence_points (tree expr) { struct tlist *before_sp = 0, *after_sp = 0; |