PR c++/92271 - make __is_same alias for __is_same_as.
authorMarek Polacek <polacek@redhat.com>
Thu, 5 Dec 2019 20:06:46 +0000 (20:06 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Thu, 5 Dec 2019 20:06:46 +0000 (20:06 +0000)
commit5c04da88731961636d08c0fd06f2aa291410d5b9
tree3d47b17b0b603fea3e1891725ae3aa55e1559103
parent34fbe3f0946f88828765184ed6581bda62cdf49f
PR c++/92271 - make __is_same alias for __is_same_as.

Richard Smith proposed adding a synonym for __is_same_as, to accomodate the
convention of exposing std::SOME_TRAIT<A, B>::value as __SOME_TRAIT(A, B).

So add that alias, and also adjust the C++ printer.  I didn't bother changing
the RID_ identifier.

* c-common.c: Add __is_same, an alias for __is_same_as.

* cxx-pretty-print.c (pp_cxx_trait_expression) <case CPTK_IS_SAME_AS>:
Print "__is_same".

* g++.dg/ext/is_same.C: New test.

From-SVN: r279018
gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/cp/ChangeLog
gcc/cp/cxx-pretty-print.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/is_same.C [new file with mode: 0644]