1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Add missing "llvm/Support/Host.h" header to LLVM example after recent header trimming (NFC)

This commit is contained in:
Mehdi Amini 2020-03-12 00:12:03 +00:00
parent df37759ded
commit 7a2ff10f7a
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Transforms/Scalar.h"
#include <cctype>

View File

@ -9,6 +9,7 @@
#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Host.h"
#include "ThinLtoDiscoveryThread.h"
#include "ThinLtoInstrumentationLayer.h"