mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
Pad my commit stats by reducing indentation in this now separate
commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93473 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
51bc5612b3
commit
83c20d3fb3
@ -110,7 +110,8 @@ static bool callIsSmall(const Function *F) {
|
||||
|
||||
if (F->hasLocalLinkage()) return false;
|
||||
|
||||
if (F->hasName()) {
|
||||
if (!F->hasName()) return false;
|
||||
|
||||
StringRef Name = F->getName();
|
||||
|
||||
// These will all likely lower to a single selection DAG node.
|
||||
@ -128,7 +129,7 @@ static bool callIsSmall(const Function *F) {
|
||||
Name == "round" || Name == "ffs" || Name == "ffsl" ||
|
||||
Name == "abs" || Name == "labs" || Name == "llabs")
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user