diff options
author | Craig Topper <craig.topper@intel.com> | 2017-09-21 04:55:03 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2017-09-21 04:55:03 +0000 |
commit | ddfdd9413ae01fdce483c1a3b64ef35f8c749472 (patch) | |
tree | 2e5484cfd76dae86ccf123d519e840e021204a52 | |
parent | ac055388ff09d42993e16721402723b91169026d (diff) | |
download | bcm5719-llvm-ddfdd9413ae01fdce483c1a3b64ef35f8c749472.tar.gz bcm5719-llvm-ddfdd9413ae01fdce483c1a3b64ef35f8c749472.zip |
[TableGen] Include StringMap.h instead of StringSet.h since that's the data structure we use.
llvm-svn: 313859
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp index e594d5e1ac4..d4c81c327ab 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp @@ -18,7 +18,7 @@ #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringExtras.h" -#include "llvm/ADT/StringSet.h" +#include "llvm/ADT/StringMap.h" #include "llvm/ADT/Twine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" |