The IRReader header is now part of its own library. Update the include

line and the library dependencies to reflect this.

llvm-svn: 177972
This commit is contained in:
Chandler Carruth 2013-03-26 02:25:54 +00:00
parent e60e57bee5
commit b45836a231
4 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS
asmparser
bitreader
bitwriter
irreader
codegen
ipo
linker

View File

@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
asmparser
bitreader
bitwriter
irreader
instrumentation
ipo
linker

View File

@ -23,9 +23,9 @@
#include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/IRReader/IRReader.h"
#include "llvm/Linker.h"
#include "llvm/Pass.h"
#include "llvm/Support/IRReader.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/Timer.h"

View File

@ -3,6 +3,7 @@ set( LLVM_LINK_COMPONENTS
asmparser
bitreader
bitwriter
irreader
codegen
instrumentation
ipo