diff options
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 | ||||
| -rw-r--r-- | clang/test/SemaCXX/shift.cpp | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 076ffeb2687..0a7d22dd64b 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -6652,7 +6652,7 @@ static void DiagnoseBadShiftValues(Sema& S, Expr *&lex, Expr *&rex, // integers have defined behavior modulo one more than the maximum value // representable in the result type, so never warn for those. llvm::APSInt Left; - if (!lex->isIntegerConstantExpr(Left, S.Context) || + if (lex->isValueDependent() || !lex->isIntegerConstantExpr(Left, S.Context) || LHSTy->hasUnsignedIntegerRepresentation()) return; llvm::APInt ResultBits = diff --git a/clang/test/SemaCXX/shift.cpp b/clang/test/SemaCXX/shift.cpp new file mode 100644 index 00000000000..c5e50128c94 --- /dev/null +++ b/clang/test/SemaCXX/shift.cpp @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 -Wall -Wshift-sign-overflow -ffreestanding -fsyntax-only -verify %s + +#include <limits.h> + +#define WORD_BIT (sizeof(int) * CHAR_BIT) + +template <int N> void f() { + (void)(N << 30); // expected-warning {{the promoted type of the shift expression is 'int'}} + (void)(30 << N); // expected-warning {{the promoted type of the shift expression is 'int'}} +} + +void test() { + f<30>(); // expected-note {{instantiation}} +} |

