File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -611,8 +611,8 @@ class OpLowerer {
611611 continue ;
612612#define DXIL_OP_INTRINSIC (OpCode, Intrin, ...) \
613613 case Intrin: \
614- HasErrors |= replaceFunctionWithOp (F, OpCode, \
615- ArrayRef<ArgSelect>{ __VA_ARGS__ }); \
614+ HasErrors |= \
615+ replaceFunctionWithOp (F, OpCode, ArrayRef<ArgSelect>{__VA_ARGS__}); \
616616 break ;
617617#include " DXILOperation.inc"
618618 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) {
8484 });
8585}
8686
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) {
9090 if (RV && RV->getValue ()) {
9191 if (const DefInit *DI = dyn_cast<DefInit>(RV->getValue ())) {
9292 auto *IntrinsicDef = DI->getDef ();
You can’t perform that action at this time.
0 commit comments