diff options
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index db1a6bf4c30..ea8d9a7b769 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -382,7 +382,7 @@ typedef unsigned HOST_WIDEST_INT gcov_type_unsigned; /* Return nonzero if SUB is an immediate subtag of TAG. */ #define GCOV_TAG_IS_SUBTAG(TAG,SUB) \ (GCOV_TAG_MASK (TAG) >> 8 == GCOV_TAG_MASK (SUB) \ - && !(((SUB) ^ (TAG)) & ~GCOV_TAG_MASK(TAG))) + && !(((SUB) ^ (TAG)) & ~GCOV_TAG_MASK (TAG))) /* Return nonzero if SUB is at a sublevel to TAG. */ #define GCOV_TAG_IS_SUBLEVEL(TAG,SUB) \ |