[dragonegg] r199097 - [cleanup] Fix the include of Verifier.h after the LLVM move of it to the

Chandler Carruth chandlerc at gmail.com
Mon Jan 13 03:00:28 PST 2014


Author: chandlerc
Date: Mon Jan 13 05:00:27 2014
New Revision: 199097

URL: http://llvm.org/viewvc/llvm-project?rev=199097&view=rev
Log:
[cleanup] Fix the include of Verifier.h after the LLVM move of it to the
IR directory.

Modified:
    dragonegg/trunk/src/Backend.cpp

Modified: dragonegg/trunk/src/Backend.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/src/Backend.cpp?rev=199097&r1=199096&r2=199097&view=diff
==============================================================================
--- dragonegg/trunk/src/Backend.cpp (original)
+++ dragonegg/trunk/src/Backend.cpp Mon Jan 13 05:00:27 2014
@@ -31,13 +31,13 @@
 // LLVM headers
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/StringExtras.h"
-#include "llvm/Analysis/Verifier.h"
 #include "llvm/Bitcode/ReaderWriter.h"
 #include "llvm/CodeGen/RegAllocRegistry.h"
 #include "llvm/IR/DataLayout.h"
 #include "llvm/IR/IRPrintingPasses.h"
 #include "llvm/IR/LLVMContext.h"
 #include "llvm/IR/Module.h"
+#include "llvm/IR/Verifier.h"
 #include "llvm/MC/SubtargetFeature.h"
 #include "llvm/PassManager.h"
 #include "llvm/Support/ManagedStatic.h"





More information about the llvm-commits mailing list