File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5035,7 +5035,7 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
5035
5035
unsigned Opcode;
5036
5036
switch (IntNo) {
5037
5037
default : llvm_unreachable (" Impossible intrinsic" );
5038
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
5038
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
5039
5039
case Intrinsic::x86_encodekey128:
5040
5040
Opcode = GET_EGPR_IF_ENABLED (X86::ENCODEKEY128);
5041
5041
break ;
@@ -6399,7 +6399,7 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
6399
6399
switch (Node->getOpcode ()) {
6400
6400
default :
6401
6401
llvm_unreachable (" Unexpected opcode!" );
6402
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
6402
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
6403
6403
case X86ISD::AESENCWIDE128KL:
6404
6404
Opcode = GET_EGPR_IF_ENABLED (X86::AESENCWIDE128KL);
6405
6405
break ;
You can’t perform that action at this time.
0 commit comments