From 007c44ccbd048472469514284697f23a58475f35 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 11 Dec 2012 05:53:24 +0000 Subject: [PATCH] BackendUtil.cpp: Add #include "llvm/TargetTransformInfo.h" llvm/Target/TargetMachine.h will not provide "llvm/TargetTransformInfo.h" any more. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169816 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/BackendUtil.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/CodeGen/BackendUtil.cpp b/lib/CodeGen/BackendUtil.cpp index e960871542..ff593620fd 100644 --- a/lib/CodeGen/BackendUtil.cpp +++ b/lib/CodeGen/BackendUtil.cpp @@ -22,6 +22,7 @@ #include "llvm/MC/SubtargetFeature.h" #include "llvm/Module.h" #include "llvm/PassManager.h" +#include "llvm/TargetTransformInfo.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FormattedStream.h" #include "llvm/Support/PrettyStackTrace.h"