Skip to content

Commit 57d0d02

Browse files
niooss-ledgerLucasSte
authored andcommitted
[SOL] Add missing space in error message about stack usage (#149)
The compiler sometimes reports: Error: A function call in method [...] overwrites values in the frame. Please, decrease stack usage or remove parameters from the call.The function call may cause undefined behavior during execution. Add a missing space between "call." and "The function". Fixes: #146
1 parent fac5222 commit 57d0d02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/SBF/SBFRegisterInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ int SBFRegisterInfo::resolveInternalFrameIndex(
158158
dbgs() << "Error: A function call in method "
159159
<< MF.getFunction().getName()
160160
<< " overwrites values in the frame. Please, decrease stack usage "
161-
<< "or remove parameters from the call."
161+
<< "or remove parameters from the call. "
162162
<< "The function call may cause undefined behavior "
163163
"during execution.\n\n";
164164
}

0 commit comments

Comments
 (0)