You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
758 B
40 lines
758 B
/*
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
int* return_depends_on_lshift(int x, int* p) {
|
|
if (x < (1 << 7))
|
|
return 0;
|
|
else
|
|
return p;
|
|
}
|
|
|
|
int return_nonnull_deref1_ok() {
|
|
int y = 0;
|
|
return *return_depends_on_lshift(1000, &y);
|
|
}
|
|
|
|
int return_null_deref1_bad() {
|
|
int y = 0;
|
|
return *return_depends_on_lshift(0, &y);
|
|
}
|
|
|
|
int* return_depends_on_rshift(int x, int* p) {
|
|
if (x < (4 >> 2))
|
|
return 0;
|
|
else
|
|
return p;
|
|
}
|
|
|
|
int return_nonnull_deref2_ok() {
|
|
int y = 0;
|
|
return *return_depends_on_rshift(2, &y);
|
|
}
|
|
|
|
int return_null_deref2_bad() {
|
|
int y = 0;
|
|
return *return_depends_on_rshift(0, &y);
|
|
}
|