diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2007-05-03 22:09:21 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2007-05-03 22:09:21 +0000 |
commit | b4dbd9e243f9aef69f8edb1363788b2311a73506 (patch) | |
tree | b8a97118388572eade9840b7f12f390c6296161a | |
parent | 0579f7f17f08649e65ca8673b8983c0f4985ae36 (diff) |
Unbreak VC++ build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36700 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Pass.h | 1 | ||||
-rw-r--r-- | lib/VMCore/Globals.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index d678df6430..b5c9f8d8ac 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -35,7 +35,6 @@ #include <map> #include <iosfwd> #include <cassert> -#include <stdint.h> namespace llvm { diff --git a/lib/VMCore/Globals.cpp b/lib/VMCore/Globals.cpp index 41a9adda07..021d6bf801 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; } |