diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-05-15 17:20:47 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-05-15 17:20:47 +0000 |
commit | c64e3e77f9c69e86b15ba6f8d18bb7aa4b7a9d68 (patch) | |
tree | a6c9e9d02f0062fa38f80fd82bec46b15f512677 | |
parent | edd5d9ece15f73ec1a31423a4ae39774aa6c521c (diff) |
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
-rw-r--r-- | lib/Transforms/IPO/SimplifyLibCalls.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp index 951516a184..c7734a814f 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 <iostream> using namespace llvm; |