Davide Italiano | 346048a | 2015-03-26 21:37:49 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -Wshift-count-negative -fblocks -verify %s |
2 | |||||
3 | int f(int a) { | ||||
4 | const int i = -1; | ||||
5 | return a << i; // expected-warning{{shift count is negative}} | ||||
6 | } |