diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-05 23:37:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-05 23:37:52 +0000 |
commit | 76c57f61f72a30a652eed2cbe2c50d071afdad02 (patch) | |
tree | 12ef7fa621499f231f66cee28eabeb7402247113 /utils/TableGen/CodeGenDAGPatterns.cpp | |
parent | 20a20d78ae1fea634b02b2007423ac69b2fbbb52 (diff) | |
download | external_llvm-76c57f61f72a30a652eed2cbe2c50d071afdad02.zip external_llvm-76c57f61f72a30a652eed2cbe2c50d071afdad02.tar.gz external_llvm-76c57f61f72a30a652eed2cbe2c50d071afdad02.tar.bz2 |
fix build on case sensitive file systems.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45639 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenDAGPatterns.cpp')
-rw-r--r-- | utils/TableGen/CodeGenDAGPatterns.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/TableGen/CodeGenDAGPatterns.cpp b/utils/TableGen/CodeGenDAGPatterns.cpp index 0d61003..6907d8f 100644 --- a/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/utils/TableGen/CodeGenDAGPatterns.cpp @@ -12,13 +12,11 @@ // //===----------------------------------------------------------------------===// -#include "CodegenDAGPatterns.h" +#include "CodeGenDAGPatterns.h" #include "Record.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/Debug.h" -//#include "llvm/Support/MathExtras.h" #include "llvm/Support/Streams.h" -//#include <algorithm> #include <set> using namespace llvm; |