1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix a compile error. config.h is now needed because DataTypes.h doesn't

include it any more.

llvm-svn: 18993
This commit is contained in:
Reid Spencer 2004-12-16 19:19:24 +00:00
parent 22b625f52c
commit 8b758b07c4

View File

@ -14,6 +14,7 @@
#include "llvm/Linker.h" #include "llvm/Linker.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/Bytecode/Reader.h" #include "llvm/Bytecode/Reader.h"
#include "llvm/Config/config.h"
#include <iostream> #include <iostream>
using namespace llvm; using namespace llvm;