Skip to content

Commit 634c42e

Browse files
committed
implement feedback
1 parent 51c22ad commit 634c42e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/docs/LangRef.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9704,7 +9704,7 @@ This instruction requires several arguments:
97049704
indicates the function accepts a variable number of arguments, the
97059705
extra arguments can be specified.
97069706
#. '``fallthrough label``': the label reached when the inline assembly's
9707-
execution exits the bottom / the intrinsic call terminates.
9707+
execution exits the bottom / the intrinsic call returns.
97089708
#. '``indirect labels``': the labels reached when a callee transfers control
97099709
to a location other than the '``fallthrough label``'. Label constraints
97109710
refer to these destinations.

llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3045,8 +3045,8 @@ bool IRTranslator::translateCallBr(const User &U,
30453045
const CallBrInst &I = cast<CallBrInst>(U);
30463046
MachineBasicBlock *CallBrMBB = &MIRBuilder.getMBB();
30473047

3048-
// FIXME: inline asm not yet supported for callbr in GlobalISel As soon as we
3049-
// add support, we need to handle the indirect asm targets, see
3048+
// FIXME: inline asm is not yet supported for callbr in GlobalISel. As soon as
3049+
// we add support, we need to handle the indirect asm targets, see
30503050
// SelectionDAGBuilder::visitCallBr().
30513051
Intrinsic::ID IID = I.getIntrinsicID();
30523052
if (I.isInlineAsm())

0 commit comments

Comments
 (0)