1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

AMDGPU: Update AMDGPURuntimeMetadata.h for enums of address space qualifiers

llvm-svn: 278682
This commit is contained in:
Yaxun Liu 2016-08-15 16:54:25 +00:00
parent 749f6fc2e4
commit ee13bba802

View File

@ -131,6 +131,13 @@ namespace RuntimeMD {
WriteOnly = 2,
ReadWrite = 3,
};
enum AddressSpaceQualifer : uint8_t {
Private = 0,
Global = 1,
Constant = 2,
Local = 3,
};
} // namespace KernelArg
} // namespace RuntimeMD
} // namespace AMDGPU