mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +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 {
|
||||
int Cost = IC.getValue();
|
||||
|
||||
if (Cost >= BasicInlineThreshold) {
|
||||
if (Cost >= (int) BasicInlineThreshold) {
|
||||
DOUT << " NOT Inlining: cost = " << Cost
|
||||
<< ", call: " << *CS.getInstruction();
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user