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.
30 lines
689 B
30 lines
689 B
/*
|
|
* Copyright (c) 2017 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
void two_accesses(int* arr) {
|
|
if (arr[1] < 0) {
|
|
arr[0] = 0;
|
|
}
|
|
}
|
|
|
|
void one_alarm_is_enough() {
|
|
int arr[1];
|
|
two_accesses(arr);
|
|
}
|
|
|
|
void two_symbolic_accesses(int n) {
|
|
int arr[1];
|
|
arr[n] = 0;
|
|
arr[n - 2] = 0; // Do not remove the associated condition
|
|
}
|
|
|
|
void tsa_one_alarm_Bad() { two_symbolic_accesses(3); }
|
|
|
|
void tsa_two_alarms_Bad() { two_symbolic_accesses(1); }
|