Fix the Emacs mode string.

Also trailing whitespace & 80-col violations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mikhail Glushenkov
2010-01-04 07:16:12 +00:00
parent ac8f2fd2e2
commit 710632d07b

View File

@@ -1,4 +1,4 @@
//===-- llvm/Attributes.h - Container for Attributes ---*---------- C++ -*-===//
//===-- llvm/Attributes.h - Container for Attributes ------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -58,7 +58,8 @@ const Attributes NoRedZone = 1<<22; /// disable redzone
const Attributes NoImplicitFloat = 1<<23; /// disable implicit floating point
/// instructions.
const Attributes Naked = 1<<24; ///< Naked function
const Attributes InlineHint = 1<<25; ///< source said inlining was desirable
const Attributes InlineHint = 1<<25; ///< source said inlining was
///desirable
/// @brief Attributes that only apply to function parameters.
const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
@@ -209,8 +210,10 @@ public:
bool hasAttrSomewhere(Attributes Attr) const;
/// operator==/!= - Provide equality predicates.
bool operator==(const AttrListPtr &RHS) const { return AttrList == RHS.AttrList; }
bool operator!=(const AttrListPtr &RHS) const { return AttrList != RHS.AttrList; }
bool operator==(const AttrListPtr &RHS) const
{ return AttrList == RHS.AttrList; }
bool operator!=(const AttrListPtr &RHS) const
{ return AttrList != RHS.AttrList; }
void dump() const;