[llvm-commits] [llvm] r96810 - in /llvm/trunk/lib/Target/PIC16: PIC16ISelDAGToDAG.cpp PIC16ISelDAGToDAG.h

Chris Lattner sabre at nondot.org
Mon Feb 22 14:14:47 PST 2010


Author: lattner
Date: Mon Feb 22 16:14:47 2010
New Revision: 96810

URL: http://llvm.org/viewvc/llvm-project?rev=96810&view=rev
Log:
move #includes earlier.

Modified:
    llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.cpp
    llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.h

Modified: llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.cpp?rev=96810&r1=96809&r2=96810&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.cpp (original)
+++ llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.cpp Mon Feb 22 16:14:47 2010
@@ -15,9 +15,8 @@
 
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
-#include "PIC16ISelDAGToDAG.h"
 #include "llvm/Support/Debug.h"
-
+#include "PIC16ISelDAGToDAG.h"
 using namespace llvm;
 
 /// createPIC16ISelDag - This pass converts a legalized DAG into a

Modified: llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.h?rev=96810&r1=96809&r2=96810&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.h (original)
+++ llvm/trunk/lib/Target/PIC16/PIC16ISelDAGToDAG.h Mon Feb 22 16:14:47 2010
@@ -19,6 +19,8 @@
 #include "PIC16TargetMachine.h"
 #include "llvm/CodeGen/SelectionDAGISel.h"
 #include "llvm/Support/Compiler.h"
+#include "llvm/Support/raw_ostream.h"
+#include "llvm/Support/Debug.h"
 #include "llvm/Intrinsics.h"
 using namespace llvm;
 





More information about the llvm-commits mailing list