diff options
Diffstat (limited to 'llvm/include/llvm/ExecutionEngine/ObjectCache.h')
-rw-r--r-- | llvm/include/llvm/ExecutionEngine/ObjectCache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/ObjectCache.h b/llvm/include/llvm/ExecutionEngine/ObjectCache.h index 47e94f18a1c7..1c72ca39f7c1 100644 --- a/llvm/include/llvm/ExecutionEngine/ObjectCache.h +++ b/llvm/include/llvm/ExecutionEngine/ObjectCache.h @@ -9,11 +9,12 @@ #ifndef LLVM_EXECUTIONENGINE_OBJECTCACHE_H #define LLVM_EXECUTIONENGINE_OBJECTCACHE_H -#include "llvm/Support/MemoryBuffer.h" #include <memory> namespace llvm { +class MemoryBuffer; +class MemoryBufferRef; class Module; /// This is the base ObjectCache type which can be provided to an |