Merge pull request #2081 from ReinUsesLisp/lmem-64

shader_ir/memory: Add LD_L 64 bits loads
This commit is contained in:
bunnei 2019-02-05 09:17:48 -05:00 committed by GitHub
commit 72c70d6808
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 14 deletions

View file

@ -217,9 +217,9 @@ enum class StoreType : u64 {
Signed8 = 1,
Unsigned16 = 2,
Signed16 = 3,
Bytes32 = 4,
Bytes64 = 5,
Bytes128 = 6,
Bits32 = 4,
Bits64 = 5,
Bits128 = 6,
};
enum class IMinMaxExchange : u64 {