diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2011-02-24 00:03:53 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2011-02-24 00:03:53 +0000 |
| commit | 60ed89dc549bf6b131c56d979d35e1debd6e3509 (patch) | |
| tree | 7e016c5686e5bf55377fb4103dbcdf3030778963 /clang | |
| parent | 220617c1ba050f60d8b46f9c7317ada64f7d47d0 (diff) | |
| download | bcm5719-llvm-60ed89dc549bf6b131c56d979d35e1debd6e3509.tar.gz bcm5719-llvm-60ed89dc549bf6b131c56d979d35e1debd6e3509.zip | |
Handle value dependent LHS as well as RHS. Test both of these, they
don't seem to have been covered by our tests previously.
This should fix bootstrap failure.
llvm-svn: 126345
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}} +} |

