diff options
| author | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:39:51 +0300 |
|---|---|---|
| committer | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:39:51 +0300 |
| commit | a22bdd20a50cc39d19866d6dc220d1f6b15c627a (patch) | |
| tree | 39c1b172a1e5b5839a685d4b63eb649d857c1806 /utils/ql/asmout.c | |
| parent | f9ec9dfafe84e1bafa3cbde074c09b1a39c9d8c6 (diff) | |
Rewrite anonymous structs to stop compiler complaints about multiple definitions
Diffstat (limited to 'utils/ql/asmout.c')
| -rw-r--r-- | utils/ql/asmout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/ql/asmout.c b/utils/ql/asmout.c index 4e685a9c..23f2a4a7 100644 --- a/utils/ql/asmout.c +++ b/utils/ql/asmout.c @@ -1,5 +1,7 @@ #include "l.h" +struct s_oprange oprange[ALAST]; + #define OPVCC(o,xo,oe,rc) (((o)<<26)|((xo)<<1)|((oe)<<10)|((rc)&1)) #define OPCC(o,xo,rc) OPVCC((o),(xo),0,(rc)) #define OP(o,xo) OPVCC((o),(xo),0,0) |
