Skip to content

Commit 937e49b

Browse files
committed
Formatting
1 parent ae52497 commit 937e49b

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
@@ -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:

llvm/utils/TableGen/DXILEmitter.cpp

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

0 commit comments

Comments
 (0)