Rename sarg__ to sarg_t

This commit is contained in:
bjorn3
2020-07-15 20:56:25 +02:00
committed by Benjamin Bouvier
parent 4971d9ee80
commit 7b7b1f4997
10 changed files with 22 additions and 22 deletions

View File

@@ -424,7 +424,7 @@ impl SpecialType {
flags can be tested with a :type:`floatcc` condition code.",
),
SpecialType::StructArgument => {
String::from("After legalization sarg__ arguments will get this type.")
String::from("After legalization sarg_t arguments will get this type.")
}
}
}
@@ -452,7 +452,7 @@ impl fmt::Display for SpecialType {
match *self {
SpecialType::Flag(shared_types::Flag::IFlags) => write!(f, "iflags"),
SpecialType::Flag(shared_types::Flag::FFlags) => write!(f, "fflags"),
SpecialType::StructArgument => write!(f, "sarg__"),
SpecialType::StructArgument => write!(f, "sarg_t"),
}
}
}