mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
clarify precedence, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -138,7 +138,7 @@ public:
|
|||||||
/// calling conventions are defined in CallingConv.h.
|
/// calling conventions are defined in CallingConv.h.
|
||||||
unsigned getCallingConv() const { return SubclassData >> 1; }
|
unsigned getCallingConv() const { return SubclassData >> 1; }
|
||||||
void setCallingConv(unsigned CC) {
|
void setCallingConv(unsigned CC) {
|
||||||
SubclassData = (SubclassData & 1) | CC << 1;
|
SubclassData = (SubclassData & 1) | (CC << 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtains a constant pointer to the ParamAttrsList object which holds the
|
/// Obtains a constant pointer to the ParamAttrsList object which holds the
|
||||||
|
Reference in New Issue
Block a user