From 0fed8bf91f3c73fcaa598bfdb26365a1c200e748 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58318 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Value.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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