IR: Convert typedefs to using aliases
This commit is contained in:
parent
f785d7f869
commit
d1f39185dd
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue