aboutsummaryrefslogtreecommitdiff
path: root/all.h
diff options
context:
space:
mode:
authorRoland Paterson-Jones <[email protected]>2024-05-23 20:21:56 +0200
committerQuentin Carbonneaux <[email protected]>2024-06-09 22:33:38 +0200
commitcf9f95f5212db901bdf09e95dae4647f17bfb1e5 (patch)
treec464064b84ee8742499e4eef084b29a5c621a293 /all.h
parent2c2051542b7671fd060560edf09516ecf56bf6fa (diff)
Optab-driven copy detection
Diffstat (limited to 'all.h')
-rw-r--r--all.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/all.h b/all.h
index bb6f096..3479d27 100644
--- a/all.h
+++ b/all.h
@@ -213,7 +213,9 @@ enum {
struct Op {
char *name;
short argcls[2][4];
- int canfold;
+ uint canfold:1;
+ uint hasid:1;
+ uint idval:1; /* identity value 0/1 */
};
struct Ins {