Skip to content

Commit 61a2668

Browse files
Fix formatting...
1 parent 98b25b2 commit 61a2668

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/coreclr/jit/gentree.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2121
/*****************************************************************************/
2222

2323
const unsigned char GenTree::gtOperKindTable[] = {
24-
#define GTNODE(en, st, cm, ok) ((ok) & GTK_MASK) + GTK_COMMUTE *cm,
24+
#define GTNODE(en, st, cm, ok) ((ok)&GTK_MASK) + GTK_COMMUTE *cm,
2525
#include "gtlist.h"
2626
};
2727

2828
#ifdef DEBUG
2929
const GenTreeDebugOperKind GenTree::gtDebugOperKindTable[] = {
30-
#define GTNODE(en, st, cm, ok) static_cast<GenTreeDebugOperKind>((ok) & DBK_MASK),
30+
#define GTNODE(en, st, cm, ok) static_cast<GenTreeDebugOperKind>((ok)&DBK_MASK),
3131
#include "gtlist.h"
3232
};
3333
#endif // DEBUG

src/coreclr/jit/gentree.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ enum GenTreeOperKind
9595
GTK_KINDMASK = (GTK_SPECIAL | GTK_LEAF | GTK_UNOP | GTK_BINOP), // operator kind mask
9696
GTK_SMPOP = (GTK_UNOP | GTK_BINOP),
9797

98-
GTK_COMMUTE = 0x08, // commutative operator
99-
GTK_EXOP = 0x10, // Indicates that an oper for a node type that extends GenTreeOp (or GenTreeUnOp)
100-
// by adding non-node fields to unary or binary operator.
101-
GTK_NOVALUE = 0x20, // node does not produce a value
98+
GTK_COMMUTE = 0x08, // commutative operator
99+
GTK_EXOP = 0x10, // Indicates that an oper for a node type that extends GenTreeOp (or GenTreeUnOp)
100+
// by adding non-node fields to unary or binary operator.
101+
GTK_NOVALUE = 0x20, // node does not produce a value
102102

103103
GTK_MASK = 0xFF
104104
};
@@ -894,6 +894,7 @@ struct GenTree
894894
public:
895895
// The register number is stored in a small format (8 bits), but the getters return and the setters take
896896
// a full-size (unsigned) format, to localize the casts here.
897+
CLANG_FORMAT_COMMENT_ANCHOR;
897898

898899
#ifdef DEBUG
899900
bool canBeContained() const;

0 commit comments

Comments
 (0)