From 95cedd879a9223799bac46747a343aee66ff9fed Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 4 Nov 2024 16:38:31 +0900 Subject: [PATCH] [qfcc] Remove a stale macro I don't remember what it was for even, other than somehow dereferencing a pointer def. --- tools/qfcc/include/expr.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/qfcc/include/expr.h b/tools/qfcc/include/expr.h index 5657c2c58..58afb8cd8 100644 --- a/tools/qfcc/include/expr.h +++ b/tools/qfcc/include/expr.h @@ -348,8 +348,6 @@ typedef struct { ex_list_t list; } ex_decl_t; -#define POINTER_VAL(p) (((p).def ? (p).def->offset : 0) + (p).val) - typedef struct expr_s { expr_t *next; rua_loc_t loc; ///< source location of expression