[llvm-commits] [llvm] r56795 - /llvm/trunk/include/llvm/Function.h
Devang Patel
dpatel at apple.com
Mon Sep 29 11:16:38 PDT 2008
Author: dpatel
Date: Mon Sep 29 13:16:38 2008
New Revision: 56795
URL: http://llvm.org/viewvc/llvm-project?rev=56795&view=rev
Log:
Fix grammer.
Modified:
llvm/trunk/include/llvm/Function.h
Modified: llvm/trunk/include/llvm/Function.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Function.h?rev=56795&r1=56794&r2=56795&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Function.h (original)
+++ llvm/trunk/include/llvm/Function.h Mon Sep 29 13:16:38 2008
@@ -149,7 +149,7 @@
void setAttributes(const AttrListPtr &attrs) { AttributeList = attrs; }
- /// hasFnAttr - Return true if this function has given attribute.
+ /// hasFnAttr - Return true if this function has the given attribute.
bool hasFnAttr(Attributes N) const {
// Function Attributes are stored at ~0 index
return AttributeList.paramHasAttr(~0U, N);
More information about the llvm-commits
mailing list