Fix use of config.h in public headers.

The CodeGenCoverage.h header is installed, but it references
the build-only header "llvm/Config/config.h". This breaks use
of the CodeGenCoverage.h header once it is installed, because config.h isn't
available.

This patch fixes the error by moving the config.h include from
the CodeGenCoverage.h header (where it's not needed), to the
CodeGenCoverage.cpp source file.

llvm-svn: 318602
This commit is contained in:
Eric Fiselier 2017-11-18 22:42:26 +00:00
parent 87d4426988
commit 1ed231de44
2 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,6 @@
#define LLVM_SUPPORT_CODEGENCOVERAGE_H
#include "llvm/ADT/BitVector.h"
#include "llvm/Config/config.h"
namespace llvm {
class LLVMContext;

View File

@ -12,6 +12,7 @@
#include "llvm/Support/CodeGenCoverage.h"
#include "llvm/Config/config.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"