IR: Convert typedefs to using aliases

This commit is contained in:
Lioncash 2017-01-17 19:40:56 -05:00
parent f785d7f869
commit d1f39185dd
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ enum Opcode
Int3 Int3
}; };
typedef unsigned Inst; using Inst = u32;
typedef Inst* InstLoc; using InstLoc = Inst*;
unsigned inline getOpcode(Inst i) unsigned inline getOpcode(Inst i)
{ {