Fix warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2008-10-31 01:50:01 +00:00
parent 4727f83741
commit 0656466734

View File

@ -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;