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 @@ -499,8 +499,8 @@ class OpLowerer {
499499 continue ;
500500#define DXIL_OP_INTRINSIC (OpCode, Intrin, ...) \
501501 case Intrin: \
502- HasErrors |= replaceFunctionWithOp (F, OpCode, \
503- ArrayRef<ArgSelect>{ __VA_ARGS__ }); \
502+ HasErrors |= \
503+ replaceFunctionWithOp (F, OpCode, ArrayRef<ArgSelect>{__VA_ARGS__}); \
504504 break ;
505505#include " DXILOperation.inc"
506506 case Intrinsic::dx_handle_fromBinding:
Original file line number Diff line number Diff line change @@ -85,9 +85,9 @@ static void AscendingSortByVersion(std::vector<const Record *> &Recs) {
8585 });
8686}
8787
88- // / Take a `int_{intrinsic_name}` and return just the intrinsic_name part if available.
89- // / Otherwise return the empty string.
90- static StringRef GetIntrinsicName (const RecordVal *RV){
88+ // / Take a `int_{intrinsic_name}` and return just the intrinsic_name part if
89+ // / available. Otherwise return the empty string.
90+ static StringRef GetIntrinsicName (const RecordVal *RV) {
9191 if (RV && RV->getValue ()) {
9292 if (const DefInit *DI = dyn_cast<DefInit>(RV->getValue ())) {
9393 auto *IntrinsicDef = DI->getDef ();
You can’t perform that action at this time.
0 commit comments