mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-14 07:10:05 +00:00
assert: Support types without operator== (int) [BZ #21972]
(cherry picked from commit b5889d25e9
)
This commit is contained in:
parent
5e989c3693
commit
fb9a781e9d
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2017-08-21 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
|
[BZ #21972]
|
||||||
|
* assert/assert.h (assert): Use static_cast (bool) for C++.
|
||||||
|
Use the ternary operator in the warning branch for GNU C.
|
||||||
|
* assert/Makefile (tests): Add tst-assert-c++, tst-assert-g++.
|
||||||
|
(CFLAGS-tst-assert-c++.o): Compile in C++11 mode.
|
||||||
|
(CFLAGS-tst-assert-g++.o): Compile in GnU C++11 mode.
|
||||||
|
(LDLIBS-tst-assert-c++, LDLIBS-tst-assert-g++): Link with libstdc++.
|
||||||
|
* assert/tst-assert-c++.cc, assert/tst-assert-g++.cc: New files.
|
||||||
|
|
||||||
2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
|
2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* misc/sys/cdefs.h (__HAVE_GENERIC_SELECTION): Define to 0, if
|
* misc/sys/cdefs.h (__HAVE_GENERIC_SELECTION): Define to 0, if
|
||||||
|
1
NEWS
1
NEWS
@ -13,6 +13,7 @@ The following bugs are resolved with this release:
|
|||||||
[21885] getaddrinfo: Release resolver context on error in gethosts
|
[21885] getaddrinfo: Release resolver context on error in gethosts
|
||||||
[21930] Do not use __builtin_types_compatible_p in C++ mode
|
[21930] Do not use __builtin_types_compatible_p in C++ mode
|
||||||
[21932] Unpaired __resolv_context_get in generic get*_r implementation
|
[21932] Unpaired __resolv_context_get in generic get*_r implementation
|
||||||
|
[21972] assert macro requires operator== (int) for its argument type
|
||||||
|
|
||||||
Version 2.26
|
Version 2.26
|
||||||
|
|
||||||
|
@ -25,6 +25,15 @@ include ../Makeconfig
|
|||||||
headers := assert.h
|
headers := assert.h
|
||||||
|
|
||||||
routines := assert assert-perr __assert
|
routines := assert assert-perr __assert
|
||||||
tests := test-assert test-assert-perr
|
tests := test-assert test-assert-perr tst-assert-c++ tst-assert-g++
|
||||||
|
|
||||||
include ../Rules
|
include ../Rules
|
||||||
|
|
||||||
|
ifeq ($(have-cxx-thread_local),yes)
|
||||||
|
CFLAGS-tst-assert-c++.o = -std=c++11
|
||||||
|
LDLIBS-tst-assert-c++ = -lstdc++
|
||||||
|
CFLAGS-tst-assert-g++.o = -std=gnu++11
|
||||||
|
LDLIBS-tst-assert-g++ = -lstdc++
|
||||||
|
else
|
||||||
|
tests-unsupported += tst-assert-c++ tst-assert-g++
|
||||||
|
endif
|
||||||
|
@ -85,7 +85,12 @@ __END_DECLS
|
|||||||
/* When possible, define assert so that it does not add extra
|
/* When possible, define assert so that it does not add extra
|
||||||
parentheses around EXPR. Otherwise, those added parentheses would
|
parentheses around EXPR. Otherwise, those added parentheses would
|
||||||
suppress warnings we'd expect to be detected by gcc's -Wparentheses. */
|
suppress warnings we'd expect to be detected by gcc's -Wparentheses. */
|
||||||
# if !defined __GNUC__ || defined __STRICT_ANSI__
|
# if defined __cplusplus
|
||||||
|
# define assert(expr) \
|
||||||
|
(static_cast <bool> (expr) \
|
||||||
|
? void (0) \
|
||||||
|
: __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION))
|
||||||
|
# elif !defined __GNUC__ || defined __STRICT_ANSI__
|
||||||
# define assert(expr) \
|
# define assert(expr) \
|
||||||
((expr) \
|
((expr) \
|
||||||
? __ASSERT_VOID_CAST (0) \
|
? __ASSERT_VOID_CAST (0) \
|
||||||
@ -93,12 +98,11 @@ __END_DECLS
|
|||||||
# else
|
# else
|
||||||
/* The first occurrence of EXPR is not evaluated due to the sizeof,
|
/* The first occurrence of EXPR is not evaluated due to the sizeof,
|
||||||
but will trigger any pedantic warnings masked by the __extension__
|
but will trigger any pedantic warnings masked by the __extension__
|
||||||
for the second occurrence. The explicit comparison against zero is
|
for the second occurrence. The ternary operator is required to
|
||||||
required to support function pointers and bit fields in this
|
support function pointers and bit fields in this context, and to
|
||||||
context, and to suppress the evaluation of variable length
|
suppress the evaluation of variable length arrays. */
|
||||||
arrays. */
|
|
||||||
# define assert(expr) \
|
# define assert(expr) \
|
||||||
((void) sizeof ((expr) == 0), __extension__ ({ \
|
((void) sizeof ((expr) ? 1 : 0), __extension__ ({ \
|
||||||
if (expr) \
|
if (expr) \
|
||||||
; /* empty */ \
|
; /* empty */ \
|
||||||
else \
|
else \
|
||||||
|
78
assert/tst-assert-c++.cc
Normal file
78
assert/tst-assert-c++.cc
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/* Tests for interactions between C++ and assert.
|
||||||
|
Copyright (C) 2017 Free Software Foundation, Inc.
|
||||||
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, see
|
||||||
|
<http://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
/* The C++ standard requires that if the assert argument is a constant
|
||||||
|
subexpression, then the assert itself is one, too. */
|
||||||
|
constexpr int
|
||||||
|
check_constexpr ()
|
||||||
|
{
|
||||||
|
return (assert (true), 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Objects of this class can be contextually converted to bool, but
|
||||||
|
cannot be compared to int. */
|
||||||
|
struct no_int
|
||||||
|
{
|
||||||
|
no_int () = default;
|
||||||
|
no_int (const no_int &) = delete;
|
||||||
|
|
||||||
|
explicit operator bool () const
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator! () const; /* No definition. */
|
||||||
|
template <class T> bool operator== (T) const; /* No definition. */
|
||||||
|
template <class T> bool operator!= (T) const; /* No definition. */
|
||||||
|
};
|
||||||
|
|
||||||
|
/* This class tests that operator== is not used by assert. */
|
||||||
|
struct bool_and_int
|
||||||
|
{
|
||||||
|
bool_and_int () = default;
|
||||||
|
bool_and_int (const no_int &) = delete;
|
||||||
|
|
||||||
|
explicit operator bool () const
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator! () const; /* No definition. */
|
||||||
|
template <class T> bool operator== (T) const; /* No definition. */
|
||||||
|
template <class T> bool operator!= (T) const; /* No definition. */
|
||||||
|
};
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_test ()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
no_int value;
|
||||||
|
assert (value);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
bool_and_int value;
|
||||||
|
assert (value);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <support/test-driver.c>
|
19
assert/tst-assert-g++.cc
Normal file
19
assert/tst-assert-g++.cc
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/* Tests for interactions between C++ and assert. GNU C++11 version.
|
||||||
|
Copyright (C) 2017 Free Software Foundation, Inc.
|
||||||
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, see
|
||||||
|
<http://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
|
#include <tst-assert-c++.cc>
|
Loading…
Reference in New Issue
Block a user