diff options
-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; } |