1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Added missing include to AMDHSAKernelDescriptor.h

We use size_t in this header, so we also need to include
cstddef to make it compile. Fixes the module builds.

llvm-svn: 334555
This commit is contained in:
Raphael Isemann 2018-06-12 22:40:20 +00:00
parent 90f9f3ddd4
commit 47ed815a1e

View File

@ -16,6 +16,7 @@
#ifndef LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H #ifndef LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
#define LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H #define LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
#include <cstddef>
#include <cstdint> #include <cstdint>
// Gets offset of specified member in specified type. // Gets offset of specified member in specified type.