mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170368 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0f47e7e019
commit
f3ceaff639
@ -89,7 +89,7 @@ private:
|
|||||||
|
|
||||||
// HasLazyArguments is stored in Value::SubclassData.
|
// HasLazyArguments is stored in Value::SubclassData.
|
||||||
/*bool HasLazyArguments;*/
|
/*bool HasLazyArguments;*/
|
||||||
|
|
||||||
// The Calling Convention is stored in Value::SubclassData.
|
// The Calling Convention is stored in Value::SubclassData.
|
||||||
/*CallingConv::ID CallingConvention;*/
|
/*CallingConv::ID CallingConvention;*/
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ public:
|
|||||||
Type *getReturnType() const; // Return the type of the ret val
|
Type *getReturnType() const; // Return the type of the ret val
|
||||||
FunctionType *getFunctionType() const; // Return the FunctionType for me
|
FunctionType *getFunctionType() const; // Return the FunctionType for me
|
||||||
|
|
||||||
/// getContext - Return a pointer to the LLVMContext associated with this
|
/// getContext - Return a pointer to the LLVMContext associated with this
|
||||||
/// function, or NULL if this function is not bound to a context yet.
|
/// function, or NULL if this function is not bound to a context yet.
|
||||||
LLVMContext &getContext() const;
|
LLVMContext &getContext() const;
|
||||||
|
|
||||||
@ -159,7 +159,7 @@ public:
|
|||||||
setValueSubclassData((getSubclassDataFromValue() & 1) |
|
setValueSubclassData((getSubclassDataFromValue() & 1) |
|
||||||
(static_cast<unsigned>(CC) << 1));
|
(static_cast<unsigned>(CC) << 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getAttributes - Return the attribute list for this Function.
|
/// getAttributes - Return the attribute list for this Function.
|
||||||
///
|
///
|
||||||
const AttributeSet &getAttributes() const { return AttributeList; }
|
const AttributeSet &getAttributes() const { return AttributeList; }
|
||||||
@ -176,15 +176,15 @@ public:
|
|||||||
|
|
||||||
/// addFnAttr - Add function attributes to this function.
|
/// addFnAttr - Add function attributes to this function.
|
||||||
///
|
///
|
||||||
void addFnAttr(Attributes::AttrVal N) {
|
void addFnAttr(Attributes::AttrVal N) {
|
||||||
// Function Attributes are stored at ~0 index
|
// Function Attributes are stored at ~0 index
|
||||||
addAttribute(AttributeSet::FunctionIndex, Attributes::get(getContext(), N));
|
addAttribute(AttributeSet::FunctionIndex, Attributes::get(getContext(), N));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// removeFnAttr - Remove function attributes from this function.
|
/// removeFnAttr - Remove function attributes from this function.
|
||||||
///
|
///
|
||||||
void removeFnAttr(Attributes N) {
|
void removeFnAttr(Attributes N) {
|
||||||
// Function Attributes are stored at ~0 index
|
// Function Attributes are stored at ~0 index
|
||||||
removeAttribute(~0U, N);
|
removeAttribute(~0U, N);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -208,7 +208,7 @@ public:
|
|||||||
|
|
||||||
/// addAttribute - adds the attribute to the list of attributes.
|
/// addAttribute - adds the attribute to the list of attributes.
|
||||||
void addAttribute(unsigned i, Attributes attr);
|
void addAttribute(unsigned i, Attributes attr);
|
||||||
|
|
||||||
/// removeAttribute - removes the attribute from the list of attributes.
|
/// removeAttribute - removes the attribute from the list of attributes.
|
||||||
void removeAttribute(unsigned i, Attributes attr);
|
void removeAttribute(unsigned i, Attributes attr);
|
||||||
|
|
||||||
@ -264,7 +264,7 @@ public:
|
|||||||
return hasUWTable() || !doesNotThrow();
|
return hasUWTable() || !doesNotThrow();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Determine if the function returns a structure through first
|
/// @brief Determine if the function returns a structure through first
|
||||||
/// pointer argument.
|
/// pointer argument.
|
||||||
bool hasStructRetAttr() const {
|
bool hasStructRetAttr() const {
|
||||||
return getParamAttributes(1).hasAttribute(Attributes::StructRet);
|
return getParamAttributes(1).hasAttribute(Attributes::StructRet);
|
||||||
|
@ -54,7 +54,7 @@ namespace llvm {
|
|||||||
return isa<CallInst>(V) && classof(cast<CallInst>(V));
|
return isa<CallInst>(V) && classof(cast<CallInst>(V));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/// DbgInfoIntrinsic - This is the common base class for debug info intrinsics
|
/// DbgInfoIntrinsic - This is the common base class for debug info intrinsics
|
||||||
///
|
///
|
||||||
class DbgInfoIntrinsic : public IntrinsicInst {
|
class DbgInfoIntrinsic : public IntrinsicInst {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user