[PATCH] D20178: Fix PR26055 - LiveDebugValues is very slow

Mandeep Singh Grang via llvm-commits llvm-commits at lists.llvm.org
Wed May 25 13:03:42 PDT 2016


mgrang added a subscriber: mgrang.

================
Comment at: lib/CodeGen/LiveDebugValues.cpp:24
@@ -23,1 +23,3 @@
 #include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/SparseBitVector.h"
+#include "llvm/ADT/UniqueVector.h"
----------------
Includes should be alphabetically ordered:

#include "llvm/ADT/SparseBitVector.h" should come before #include "llvm/ADT/Statistic.h"


http://reviews.llvm.org/D20178





More information about the llvm-commits mailing list