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.
37 lines
599 B
37 lines
599 B
6 years ago
|
/*
|
||
|
* Copyright (c) 2018-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.
|
||
|
*/
|
||
|
|
||
|
#include "my_typedef.h"
|
||
|
|
||
|
struct st {
|
||
|
int field;
|
||
|
};
|
||
|
|
||
|
int get_field(t* x) { return x->field; }
|
||
|
|
||
|
void FN_call_get_field_cond_Bad() {
|
||
|
int a[5];
|
||
|
t x = {0};
|
||
|
if (get_field_wrapper(&x)) {
|
||
|
a[10] = 0;
|
||
|
} else {
|
||
|
a[10] = 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void call_get_field_Good() {
|
||
|
int a[5];
|
||
|
t x = {0};
|
||
|
a[get_field_wrapper(&x)] = 0;
|
||
|
}
|
||
|
|
||
|
void FN_call_get_field_Bad() {
|
||
|
int a[5];
|
||
|
t x = {10};
|
||
|
a[get_field_wrapper(&x)] = 0;
|
||
|
}
|