fit in 80 cols

llvm-svn: 58318
This commit is contained in:
Chris Lattner 2008-10-28 06:20:17 +00:00
parent 38461f6b2f
commit a2422d8f3e
1 changed files with 2 additions and 1 deletions

View File

@ -289,7 +289,8 @@ template <> inline bool isa_impl<GlobalAlias, Value>(const Value &Val) {
return Val.getValueID() == Value::GlobalAliasVal;
}
template <> inline bool isa_impl<GlobalValue, Value>(const Value &Val) {
return isa<GlobalVariable>(Val) || isa<Function>(Val) || isa<GlobalAlias>(Val);
return isa<GlobalVariable>(Val) || isa<Function>(Val) ||
isa<GlobalAlias>(Val);
}
} // End llvm namespace