ir: simplify_standard_types should be recursive.

Stuff like *mut Option<&mut Foo> should really be *mut *mut Foo for
example.
This commit is contained in:
Emilio Cobos Álvarez
2021-02-24 18:10:17 +01:00
parent 8236c82679
commit 7312b997be
11 changed files with 55 additions and 54 deletions
+1
View File
@@ -24,4 +24,5 @@ pub extern "C" fn root(
c: Foo,
d: Bar,
e: *mut Option<*mut Opaque>,
f: extern "C" fn(Option<&Opaque>),
) { }