c++: Readd [LR]ROTATE_EXPR support to constexpr.c [PR94067]
authorJakub Jelinek <jakub@redhat.com>
Mon, 9 Mar 2020 20:52:18 +0000 (21:52 +0100)
committerJakub Jelinek <jakub@redhat.com>
Mon, 9 Mar 2020 20:52:18 +0000 (21:52 +0100)
Since r10-6527-gaaa26bf496a646778ac861aed124d960b5bf549f fold_for_warn
will perform maybe_constant_value even on some cp_fold produced trees and
so can include rotate exprs which were removed last fall from constexpr.c

2020-03-09  Jakub Jelinek  <jakub@redhat.com>

PR c++/94067
Revert
2019-10-11  Paolo Carlini  <paolo.carlini@oracle.com>

* constexpr.c (cxx_eval_constant_expression): Do not handle
RROTATE_EXPR and LROTATE_EXPR.

* g++.dg/warn/Wconversion-pr94067.C: New test.

gcc/cp/ChangeLog
gcc/cp/constexpr.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/warn/Wconversion-pr94067.C [new file with mode: 0644]

index 5fc3e7d..7b3b956 100644 (file)
@@ -1,3 +1,12 @@
+2020-03-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/94067
+       Revert
+       2019-10-11  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * constexpr.c (cxx_eval_constant_expression): Do not handle
+       RROTATE_EXPR and LROTATE_EXPR.
+
 2020-03-09  Marek Polacek  <polacek@redhat.com>
 
        PR c++/94050 - ABI issue with alignas on armv7hl.
index 521c87f..76af0d7 100644 (file)
@@ -5730,6 +5730,8 @@ cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t,
     case MAX_EXPR:
     case LSHIFT_EXPR:
     case RSHIFT_EXPR:
+    case LROTATE_EXPR:
+    case RROTATE_EXPR:
     case BIT_IOR_EXPR:
     case BIT_XOR_EXPR:
     case BIT_AND_EXPR:
@@ -7853,6 +7855,8 @@ potential_constant_expression_1 (tree t, bool want_rval, bool strict, bool now,
     case MAX_EXPR:
     case LSHIFT_EXPR:
     case RSHIFT_EXPR:
+    case LROTATE_EXPR:
+    case RROTATE_EXPR:
     case BIT_IOR_EXPR:
     case BIT_XOR_EXPR:
     case BIT_AND_EXPR:
index 6c0fab6..44f65ff 100644 (file)
@@ -1,3 +1,8 @@
+2020-03-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/94067
+       * g++.dg/warn/Wconversion-pr94067.C: New test.
+
 2020-03-09  Marek Polacek  <polacek@redhat.com>
 
        PR c++/94050 - ABI issue with alignas on armv7hl.
diff --git a/gcc/testsuite/g++.dg/warn/Wconversion-pr94067.C b/gcc/testsuite/g++.dg/warn/Wconversion-pr94067.C
new file mode 100644 (file)
index 0000000..c103101
--- /dev/null
@@ -0,0 +1,9 @@
+// PR c++/94067
+// { dg-do compile }
+// { dg-options "-Wconversion" }
+
+static inline unsigned short
+swap (unsigned short x)
+{
+  return (x >> 8) | static_cast<unsigned short>(x << 8);
+}