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 @@ -5027,7 +5027,7 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
5027
5027
unsigned Opcode;
5028
5028
switch (IntNo) {
5029
5029
default : llvm_unreachable (" Impossible intrinsic" );
5030
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
5030
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
5031
5031
case Intrinsic::x86_encodekey128:
5032
5032
Opcode = GET_EGPR_IF_ENABLED (X86::ENCODEKEY128);
5033
5033
break ;
@@ -6386,7 +6386,7 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
6386
6386
switch (Node->getOpcode ()) {
6387
6387
default :
6388
6388
llvm_unreachable (" Unexpected opcode!" );
6389
- #define GET_EGPR_IF_ENABLED (OPC ) Subtarget->hasEGPR () ? OPC##_EVEX : OPC
6389
+ #define GET_EGPR_IF_ENABLED (OPC ) ( Subtarget->hasEGPR () ? OPC##_EVEX : OPC)
6390
6390
case X86ISD::AESENCWIDE128KL:
6391
6391
Opcode = GET_EGPR_IF_ENABLED (X86::AESENCWIDE128KL);
6392
6392
break ;
You can’t perform that action at this time.
0 commit comments