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.
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 - 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <infer_model/portability.h>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
namespace infer_model {
|
|
|
|
// code compiled with infer headers is not supposed to be executed
|
|
|
|
struct AbortWhenRun {
|
|
|
|
AbortWhenRun() { __infer_skip__(); }
|
|
|
|
// will be skipped by analyzer
|
|
|
|
void __infer_skip__() {
|
|
|
|
fprintf(stderr,
|
|
|
|
"!!! This program must not be run !!!\n"
|
|
|
|
"This code was compiled to be analyzed by Infer.\n"
|
|
|
|
"To run this program, recompile it without Infer.\n");
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static AbortWhenRun a{};
|
|
|
|
}
|