Skip to content

Commit 0d09b69

Browse files
committed
lowercase
1 parent 7772327 commit 0d09b69

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3281,7 +3281,7 @@ void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) {
32813281
LLVMContext::OB_cfguardtarget, LLVMContext::OB_ptrauth,
32823282
LLVMContext::OB_clang_arc_attachedcall}))
32833283
reportFatalUsageError(
3284-
"Cannot lower invokes with arbitrary operand bundles!");
3284+
"cannot lower invokes with arbitrary operand bundles!");
32853285

32863286
const Value *Callee(I.getCalledOperand());
32873287
const Function *Fn = dyn_cast<Function>(Callee);
@@ -3384,7 +3384,7 @@ void SelectionDAGBuilder::visitCallBr(const CallBrInst &I) {
33843384
if (I.hasOperandBundlesOtherThan(
33853385
{LLVMContext::OB_deopt, LLVMContext::OB_funclet}))
33863386
reportFatalUsageError(
3387-
"Cannot lower callbrs with arbitrary operand bundles!");
3387+
"cannot lower callbrs with arbitrary operand bundles!");
33883388

33893389
assert(I.isInlineAsm() && "Only know how to handle inlineasm callbr");
33903390
visitInlineAsm(I);
@@ -9556,7 +9556,7 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
95569556
LLVMContext::OB_cfguardtarget, LLVMContext::OB_preallocated,
95579557
LLVMContext::OB_clang_arc_attachedcall, LLVMContext::OB_kcfi,
95589558
LLVMContext::OB_convergencectrl}))
9559-
reportFatalUsageError("Cannot lower calls with arbitrary operand bundles!");
9559+
reportFatalUsageError("cannot lower calls with arbitrary operand bundles!");
95609560

95619561
SDValue Callee = getValue(I.getCalledOperand());
95629562

llvm/test/CodeGen/X86/invalid-operand-bundle-call.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s
22

3-
; CHECK: LLVM ERROR: Cannot lower calls with arbitrary operand bundles!
3+
; CHECK: LLVM ERROR: cannot lower calls with arbitrary operand bundles!
44

55
declare void @g()
66

llvm/test/CodeGen/X86/invalid-operand-bundle-callbr.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s
22

3-
; CHECK: LLVM ERROR: Cannot lower callbrs with arbitrary operand bundles!
3+
; CHECK: LLVM ERROR: cannot lower callbrs with arbitrary operand bundles!
44

55
define void @f(i32 %arg) {
66
callbr void asm "", ""() [ "foo"(i32 %arg) ]

llvm/test/CodeGen/X86/invalid-operand-bundle-invoke.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: not llc -mtriple=x86_64-unknown-linux-gnu < %s 2>&1 | FileCheck %s
22

3-
; CHECK: LLVM ERROR: Cannot lower invokes with arbitrary operand bundles!
3+
; CHECK: LLVM ERROR: cannot lower invokes with arbitrary operand bundles!
44

55
declare void @g()
66
declare i32 @__gxx_personality_v0(...)

0 commit comments

Comments
 (0)