From: Reid Spencer Date: Sun, 15 May 2005 17:20:47 +0000 (+0000) Subject: Duh .. you actually have to #include Config/config.h before you can test X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c64e3e77f9c69e86b15ba6f8d18bb7aa4b7a9d68;p=oota-llvm.git Duh .. you actually have to #include Config/config.h before you can test for one of the values that it defines! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22058 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp index 951516a1842..c7734a814f8 100644 --- a/lib/Transforms/IPO/SimplifyLibCalls.cpp +++ b/lib/Transforms/IPO/SimplifyLibCalls.cpp @@ -27,6 +27,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Target/TargetData.h" #include "llvm/Transforms/IPO.h" +#include "llvm/Config/config.h" #include using namespace llvm;