mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user