[llvm-commits] [llvm] r56515 - /llvm/trunk/include/llvm/Function.h
Devang Patel
dpatel at apple.com
Tue Sep 23 16:18:26 PDT 2008
Author: dpatel
Date: Tue Sep 23 18:18:26 2008
New Revision: 56515
URL: http://llvm.org/viewvc/llvm-project?rev=56515&view=rev
Log:
Remove tabs.
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=56515&r1=56514&r2=56515&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Function.h (original)
+++ llvm/trunk/include/llvm/Function.h Tue Sep 23 18:18:26 2008
@@ -151,15 +151,15 @@
/// hasNote - Return true if this function has given note.
bool hasNote(Attributes N) const {
- // Notes are stored at ~0 index in parameter attribute list
+ // Notes are stored at ~0 index in parameter attribute list
return (!isDeclaration() && paramHasAttr(~0, N));
}
/// setNotes - Set notes for this function
///
void setNotes(const Attributes N) {
- // Notes are stored at ~0 index in parameter attribute list
- addParamAttr(~0, N);
+ // Notes are stored at ~0 index in parameter attribute list
+ addParamAttr(~0, N);
}
/// hasGC/getGC/setGC/clearGC - The name of the garbage collection algorithm
More information about the llvm-commits
mailing list