diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 939cf102361..ee7e25ac76a 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -289,7 +289,8 @@ template <> inline bool isa_impl(const Value &Val) { return Val.getValueID() == Value::GlobalAliasVal; } template <> inline bool isa_impl(const Value &Val) { - return isa(Val) || isa(Val) || isa(Val); + return isa(Val) || isa(Val) || + isa(Val); } } // End llvm namespace