mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
Fix warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4727f83741
commit
0656466734
@ -118,7 +118,7 @@ void BasicInlinerImpl::inlineFunctions() {
|
|||||||
} else {
|
} else {
|
||||||
int Cost = IC.getValue();
|
int Cost = IC.getValue();
|
||||||
|
|
||||||
if (Cost >= BasicInlineThreshold) {
|
if (Cost >= (int) BasicInlineThreshold) {
|
||||||
DOUT << " NOT Inlining: cost = " << Cost
|
DOUT << " NOT Inlining: cost = " << Cost
|
||||||
<< ", call: " << *CS.getInstruction();
|
<< ", call: " << *CS.getInstruction();
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user