Merge pull request #3431 from bjorn3/remove_sarg_t

Remove the sarg_t type and dummy_sarg_t instruction
This commit is contained in:
Pat Hickey
2021-10-10 09:58:14 -07:00
committed by GitHub
8 changed files with 3 additions and 56 deletions

View File

@@ -400,7 +400,6 @@ impl Display for Type {
f.write_str(match *self {
IFLAGS => "iflags",
FFLAGS => "fflags",
SARG_T => "sarg_t",
INVALID => panic!("INVALID encountered"),
_ => panic!("Unknown Type(0x{:x})", self.0),
})