gallivm: Fix build with LLVM >= r180063

This commit is contained in:
Tom Stellard 2013-04-23 10:57:54 -04:00
parent 1fb8c3ce55
commit ead4db420e
2 changed files with 8 additions and 0 deletions

View File

@ -56,6 +56,10 @@
#include <llvm/MC/MCRegisterInfo.h>
#endif /* HAVE_LLVM >= 0x0301 */
#if HAVE_LLVM >= 0x0303
#include <llvm/ADT/OwningPtr.h>
#endif
#include "util/u_math.h"
#include "util/u_debug.h"

View File

@ -67,6 +67,10 @@
#include <llvm/Target/TargetSelect.h>
#endif /* HAVE_LLVM < 0x0300 */
#if HAVE_LLVM >= 0x0303
#include <llvm/Wrap.h>
#endif
#include "pipe/p_config.h"
#include "util/u_debug.h"
#include "util/u_cpu_detect.h"