diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-23 22:35:17 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-23 22:35:17 +0000 |
commit | d9b4a5f859188cbb168c223071b413e58c53c925 (patch) | |
tree | 04fec821fbc9cdc4f37ab86adc1dcfeb3243d644 /lib/Transforms/Utils/InlineCost.cpp | |
parent | b2c3e3fdd9987fc2d08eb8f7892db2cbc7ec74d9 (diff) |
Use parameter attribute store (soon to be renamed) for
Function Notes also. Function notes are stored at index ~0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56511 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/InlineCost.cpp')
-rw-r--r-- | lib/Transforms/Utils/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/InlineCost.cpp b/lib/Transforms/Utils/InlineCost.cpp index 2a39158d24..eb825287be 100644 --- a/lib/Transforms/Utils/InlineCost.cpp +++ b/lib/Transforms/Utils/InlineCost.cpp @@ -222,7 +222,7 @@ int InlineCostAnalyzer::getInlineCost(CallSite CS, if (CalleeFI.NeverInline) return 2000000000; - if (Callee->hasNote(FN_NOTE_AlwaysInline)) + if (Callee->hasNote(ParamAttr::FN_NOTE_AlwaysInline)) return -2000000000; // Add to the inline quality for properties that make the call valuable to |