diff options
| author | Devang Patel <dpatel@apple.com> | 2008-09-23 23:18:26 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2008-09-23 23:18:26 +0000 |
| commit | 4a2ac2ca207a7cfe23d8925a25c93290779b1270 (patch) | |
| tree | 55c4b0fb2abe193295b0ca9eaf61ca254086a0c3 | |
| parent | e480dfa79c90cf5a85680bc1ff503f21e6439a72 (diff) | |
| download | external_llvm-4a2ac2ca207a7cfe23d8925a25c93290779b1270.zip external_llvm-4a2ac2ca207a7cfe23d8925a25c93290779b1270.tar.gz external_llvm-4a2ac2ca207a7cfe23d8925a25c93290779b1270.tar.bz2 | |
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56515 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | include/llvm/Function.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 3efce3b..b800909 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -151,15 +151,15 @@ public: /// 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 |
