summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-16 06:10:45 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-16 06:10:45 +0000
commitf3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1 (patch)
tree470ebc1cf0b533edb3fe494386580e7c28cd63c8 /include
parente3f7be36c75ddcafb24b52c36c55c3dc17215db3 (diff)
downloadllvm-f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1.tar.gz
llvm-f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1.tar.bz2
llvm-f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1.tar.xz
Cleanup whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Attributes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h
index 345277560f..a28aa18347 100644
--- a/include/llvm/Attributes.h
+++ b/include/llvm/Attributes.h
@@ -34,15 +34,15 @@ public:
/// should be treated by optimizations and code generation. This enumeration
/// lists the attributes that can be associated with parameters, function
/// results or the function itself.
- ///
+ ///
/// Note that uwtable is about the ABI or the user mandating an entry in the
/// unwind table. The nounwind attribute is about an exception passing by the
/// function.
- ///
+ ///
/// In a theoretical system that uses tables for profiling and sjlj for
/// exceptions, they would be fully independent. In a normal system that uses
/// tables for both, the semantics are:
- ///
+ ///
/// nil = Needs an entry because an exception might pass by.
/// nounwind = No need for an entry
/// uwtable = Needs an entry because the ABI says so and because
@@ -395,8 +395,6 @@ public:
bool operator!=(const AttrListPtr &RHS) const
{ return AttrList != RHS.AttrList; }
- void dump() const;
-
//===--------------------------------------------------------------------===//
// Attribute List Introspection
//===--------------------------------------------------------------------===//
@@ -426,6 +424,8 @@ public:
/// holds a index number plus a set of attributes.
const AttributeWithIndex &getSlot(unsigned Slot) const;
+ void dump() const;
+
private:
explicit AttrListPtr(AttributeListImpl *L);