summaryrefslogtreecommitdiff
path: root/utils/check_expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/check_expr.c')
-rw-r--r--utils/check_expr.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/utils/check_expr.c b/utils/check_expr.c
index e15705e1b..1e4b9d175 100644
--- a/utils/check_expr.c
+++ b/utils/check_expr.c
@@ -143,13 +143,6 @@ int check_eval(char *buffer, char *error_report);
void parse_file(const char *fname);
int ast_add_profile(const char *x, uint64_t scale) { return 0;}
-int ast_atomic_fetchadd_int_slow(volatile int *p, int v)
-{
- int ret;
- ret = *p;
- *p += v;
- return ret;
-}
char *find_var(const char *varname) /* the list should be pretty short, if there's any list at all */
{