From a2422d8f3e44fd112e134f32b861e2a2ab16c128 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 28 Oct 2008 06:20:17 +0000 Subject: [PATCH] fit in 80 cols llvm-svn: 58318 --- llvm/include/llvm/Value.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/Value.h b/llvm/include/llvm/Value.h index 939cf102361f..ee7e25ac76a7 100644 --- a/llvm/include/llvm/Value.h +++ b/llvm/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