From: Jeff Cohen Date: Thu, 3 May 2007 22:09:21 +0000 (+0000) Subject: Unbreak VC++ build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b4dbd9e243f9aef69f8edb1363788b2311a73506;p=oota-llvm.git Unbreak VC++ build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36700 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index d678df6430b..b5c9f8d8acf 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -35,7 +35,6 @@ #include #include #include -#include namespace llvm { diff --git a/lib/VMCore/Globals.cpp b/lib/VMCore/Globals.cpp index 41a9adda079..021d6bf8012 100644 --- a/lib/VMCore/Globals.cpp +++ b/lib/VMCore/Globals.cpp @@ -223,7 +223,7 @@ const GlobalValue *GlobalAlias::getAliasedGlobal() const { else assert(0 && "Unsupported aliasee"); } - } else - return 0; + } + return 0; }