Fix fmt printing uintptr type

This commit is contained in:
gingerBill
2017-11-04 00:16:54 +00:00
parent 121f0185d6
commit 6bc5584add
9 changed files with 77 additions and 73 deletions
+6 -6
View File
@@ -376,12 +376,12 @@ enum irParamPasskind {
};
struct irValueParam {
irParamPasskind kind;
irProcedure * parent;
Entity * entity;
Type * type;
Type * original_type;
Array<irValue *> referrers;
irParamPasskind kind;
irProcedure * parent;
Entity * entity;
Type * type;
Type * original_type;
Array<irValue *> referrers;
};
struct irValue {