From: Gabor Greif Date: Tue, 27 May 2008 17:26:02 +0000 (+0000) Subject: back out last commit: The .cpp file for a module should include its corresponding... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0a4fd1ab7e7c83b3ecf03cbd6b35d2b164995267;p=oota-llvm.git back out last commit: The .cpp file for a module should include its corresponding header first, even if redundant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51598 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index 15cc0d9e816..64711fea0c7 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -11,6 +11,7 @@ // //===----------------------------------------------------------------------===// +#include "llvm/BasicBlock.h" #include "llvm/Constants.h" #include "llvm/Instructions.h" #include "llvm/Type.h"