File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4087,7 +4087,7 @@ MachineSDNode *X86DAGToDAGISel::matchBEXTRFromAndImm(SDNode *Node) {
4087
4087
SDValue Control;
4088
4088
unsigned ROpc, MOpc;
4089
4089
4090
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
4090
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
4091
4091
if (!PreferBEXTR) {
4092
4092
assert (Subtarget->hasBMI2 () && " We must have BMI2's BZHI then." );
4093
4093
// If we can't make use of BEXTR then we can't fuse shift+mask stages.
@@ -5488,7 +5488,7 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
5488
5488
bool UseMULXHi = UseMULX && SDValue (Node, 0 ).use_empty ();
5489
5489
switch (NVT.SimpleTy ) {
5490
5490
default : llvm_unreachable (" Unsupported VT!" );
5491
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
5491
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
5492
5492
case MVT::i32:
5493
5493
Opc = UseMULXHi ? X86::MULX32Hrr
5494
5494
: UseMULX ? GET_EGPR_IF_ENABLED (X86::MULX32rr)
You can’t perform that action at this time.
0 commit comments