Skip to content

Commit 485e3a8

Browse files
committed
Formatting
1 parent c5c5d75 commit 485e3a8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

llvm/lib/Target/DirectX/DXILOpLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

llvm/utils/TableGen/DXILEmitter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)