IR: Convert typedefs to using aliases
This commit is contained in:
parent
f785d7f869
commit
d1f39185dd
|
@ -182,8 +182,8 @@ enum Opcode
|
|||
Int3
|
||||
};
|
||||
|
||||
typedef unsigned Inst;
|
||||
typedef Inst* InstLoc;
|
||||
using Inst = u32;
|
||||
using InstLoc = Inst*;
|
||||
|
||||
unsigned inline getOpcode(Inst i)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue