[llvm-commits] [llvm] r58318 - /llvm/trunk/include/llvm/Value.h

Chris Lattner sabre at nondot.org
Mon Oct 27 23:20:18 PDT 2008


Author: lattner
Date: Tue Oct 28 01:20:17 2008
New Revision: 58318

URL: http://llvm.org/viewvc/llvm-project?rev=58318&view=rev
Log:
fit in 80 cols

Modified:
    llvm/trunk/include/llvm/Value.h

Modified: llvm/trunk/include/llvm/Value.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Value.h?rev=58318&r1=58317&r2=58318&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Value.h (original)
+++ llvm/trunk/include/llvm/Value.h Tue Oct 28 01:20:17 2008
@@ -289,7 +289,8 @@
   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





More information about the llvm-commits mailing list