Skip to content

Commit f487cb4

Browse files
committed
Address review comments
1 parent 8dc9461 commit f487cb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8028,7 +8028,7 @@ void SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I,
80288028
CLI.CB = &I;
80298029

80308030
std::pair<SDValue, SDValue> Result =
8031-
lowerInvokable(CLI, /*EHPadBB*/ nullptr);
8031+
lowerInvokable(CLI, /*EHPadBB=*/nullptr);
80328032

80338033
if (Result.first.getNode())
80348034
setValue(&I, Result.first);

llvm/test/Verifier/AMDGPU/intrinsic-amdgcn-call-whole-wave.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
1+
; RUN: not llvm-as %s -disable-output 2>&1 | FileCheck %s
22

33
define amdgpu_cs void @indirect(ptr %fn, i32 %x) {
44
; CHECK: Indirect whole wave calls are not allowed

0 commit comments

Comments
 (0)