mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
[X86] Cleanup inheritance of the X86InstrFormats.td classes. NFC
EVEX shouldn't inherit from VEX and EVEX_4V shouldn't inherit from VEX_4V. llvm-svn: 328756
This commit is contained in:
parent
87ed56990a
commit
b8d8b0c82f
@ -208,8 +208,8 @@ class VEX_WIG { bits<2> VEX_WPrefix = 2; }
|
||||
class VEX_4V : VEX { bit hasVEX_4V = 1; }
|
||||
class VEX_L { bit hasVEX_L = 1; }
|
||||
class VEX_LIG { bit ignoresVEX_L = 1; }
|
||||
class EVEX : VEX { Encoding OpEnc = EncEVEX; }
|
||||
class EVEX_4V : VEX_4V { Encoding OpEnc = EncEVEX; }
|
||||
class EVEX { Encoding OpEnc = EncEVEX; }
|
||||
class EVEX_4V : EVEX { bit hasVEX_4V = 1; }
|
||||
class EVEX_K { bit hasEVEX_K = 1; }
|
||||
class EVEX_KZ : EVEX_K { bit hasEVEX_Z = 1; }
|
||||
class EVEX_B { bit hasEVEX_B = 1; }
|
||||
|
Loading…
Reference in New Issue
Block a user