diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-03 03:12:42 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-03 03:37:13 -0500 |
commit | 086d7dbb2e689cf53df66c7edf3ea01c3ff2f1a9 (patch) | |
tree | f21664577b6c8558232fb252fd440756b3aedfe8 /sim/ppc/gen-semantics.c | |
parent | 7811c75893c4078d9b81f05d1642d7833c0ca400 (diff) | |
download | binutils-086d7dbb2e689cf53df66c7edf3ea01c3ff2f1a9.zip binutils-086d7dbb2e689cf53df66c7edf3ea01c3ff2f1a9.tar.gz binutils-086d7dbb2e689cf53df66c7edf3ea01c3ff2f1a9.tar.bz2 |
sim: ppc: unify igen filter modules
The common igen code was forked from the ppc long ago. The filter
module is still pretty similar in API, so we can unfork them with
a little bit of effort.
The filter.c module is still here because of the unique it_is API.
The common igen code doesn't seem to have an equiv API as this only
operates on two strings and not an actual filter object, and it's
easy enough to leave behind to unfork the rest.
Diffstat (limited to 'sim/ppc/gen-semantics.c')
-rw-r--r-- | sim/ppc/gen-semantics.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/ppc/gen-semantics.c b/sim/ppc/gen-semantics.c index 587080b..99f5fe8 100644 --- a/sim/ppc/gen-semantics.c +++ b/sim/ppc/gen-semantics.c @@ -24,6 +24,7 @@ #include "lf-ppc.h" #include "table.h" #include "filter.h" +#include "filter-ppc.h" #include "ld-decode.h" #include "ld-cache.h" |