[C++ PATCH] kill unused enum
authorNathan Sidwell <nathan@acm.org>
Thu, 11 Jan 2018 16:57:31 +0000 (16:57 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 11 Jan 2018 16:57:31 +0000 (16:57 +0000)
https://gcc.gnu.org/ml/gcc-patches/2018-01/msg00923.html
* method.c (enum mangling_flags): Delete long-dead enum.

From-SVN: r256543

gcc/cp/ChangeLog
gcc/cp/method.c

index af3711253b321a411c65d0a07b57184571dcf3e2..8731982779f6cdd3db4cd75803a5470cd66bf4f7 100644 (file)
@@ -1,3 +1,7 @@
+2018-01-11  Nathan Sidwell  <nathan@acm.org>
+
+       * method.c (enum mangling_flags): Delete long-dead enum.
+
 2018-01-10  Paolo Carlini  <paolo.carlini@oracle.com>
 
        * parser.c (cp_parser_std_attribute_spec): When
index 55c84f12399cc36e1f1efc0441c63c84c38a524e..5bc830cd820fbb199d7bc30e2b23dabd3f78730e 100644 (file)
@@ -32,22 +32,6 @@ along with GCC; see the file COPYING3.  If not see
 #include "toplev.h"
 #include "common/common-target.h"
 
-/* Various flags to control the mangling process.  */
-
-enum mangling_flags
-{
-  /* No flags.  */
-  mf_none = 0,
-  /* The thing we are presently mangling is part of a template type,
-     rather than a fully instantiated type.  Therefore, we may see
-     complex expressions where we would normally expect to see a
-     simple integer constant.  */
-  mf_maybe_uninstantiated = 1,
-  /* When mangling a numeric value, use the form `_XX_' (instead of
-     just `XX') if the value has more than one digit.  */
-  mf_use_underscores_around_value = 2
-};
-
 static void do_build_copy_assign (tree);
 static void do_build_copy_constructor (tree);
 static tree make_alias_for_thunk (tree);