// RUN: %clang_analyze_cc1 -x c++ -analyzer-checker=core -analyzer-output=text -verify %s
typedefunsignedcharuint8_t;
#define UINT8_MAX 255
#define TCP_MAXWIN 65535
uint8_tget_uint8_max(){
uint8_trcvscale=UINT8_MAX;// expected-note{{'rcvscale' initialized to 255}}
returnrcvscale;// expected-note{{Returning the value 255 (loaded from 'rcvscale')}}
}
voidshift_by_undefined_value(){
uint8_tshift_amount=get_uint8_max();// expected-note{{'shift_amount' initialized to 255}}
// expected-note@-1{{Calling 'get_uint8_max'}}
// expected-note@-2{{Returning from 'get_uint8_max'}}
(void)(TCP_MAXWIN<<shift_amount);// expected-warning{{The result of the left shift is undefined due to shifting by '255', which is greater or equal to the width of type 'int'}}
// expected-note@-1{{The result of the left shift is undefined due to shifting by '255', which is greater or equal to the width of type 'int'}}