File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -611,8 +611,8 @@ class OpLowerer {
611
611
continue ;
612
612
#define DXIL_OP_INTRINSIC (OpCode, Intrin, ...) \
613
613
case Intrin: \
614
- HasErrors |= replaceFunctionWithOp (F, OpCode, \
615
- ArrayRef<ArgSelect>{ __VA_ARGS__ }); \
614
+ HasErrors |= \
615
+ replaceFunctionWithOp (F, OpCode, ArrayRef<ArgSelect>{__VA_ARGS__}); \
616
616
break ;
617
617
#include " DXILOperation.inc"
618
618
case Intrinsic::dx_handle_fromBinding:
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ static void ascendingSortByVersion(std::vector<const Record *> &Recs) {
84
84
});
85
85
}
86
86
87
- // / Take a `int_{intrinsic_name}` and return just the intrinsic_name part if available.
88
- // / Otherwise return the empty string.
89
- static StringRef GetIntrinsicName (const RecordVal *RV){
87
+ // / Take a `int_{intrinsic_name}` and return just the intrinsic_name part if
88
+ // / available. Otherwise return the empty string.
89
+ static StringRef GetIntrinsicName (const RecordVal *RV) {
90
90
if (RV && RV->getValue ()) {
91
91
if (const DefInit *DI = dyn_cast<DefInit>(RV->getValue ())) {
92
92
auto *IntrinsicDef = DI->getDef ();
You can’t perform that action at this time.
0 commit comments