[llvm] r313859 - [TableGen] Include StringMap.h instead of StringSet.h since that's the data structure we use.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 20 21:55:03 PDT 2017


Author: ctopper
Date: Wed Sep 20 21:55:03 2017
New Revision: 313859

URL: http://llvm.org/viewvc/llvm-project?rev=313859&view=rev
Log:
[TableGen] Include StringMap.h instead of StringSet.h since that's the data structure we use.

Modified:
    llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp

Modified: llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp?rev=313859&r1=313858&r2=313859&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp (original)
+++ llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp Wed Sep 20 21:55:03 2017
@@ -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"




More information about the llvm-commits mailing list