diff options
| author | Devang Patel <dpatel@apple.com> | 2008-09-03 19:52:17 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2008-09-03 19:52:17 +0000 |
| commit | 50c66cdb0d1b82f07a05ee98244999a1809b322b (patch) | |
| tree | 3b0c86e1ee9eaefa43373d6f56841b53891923a5 | |
| parent | b86a7888623a069365eb47750adf3e70a78ee8b5 (diff) | |
| download | bcm5719-llvm-50c66cdb0d1b82f07a05ee98244999a1809b322b.tar.gz bcm5719-llvm-50c66cdb0d1b82f07a05ee98244999a1809b322b.zip | |
Fix comments.
llvm-svn: 55716
| -rw-r--r-- | llvm/lib/Transforms/IPO/InlineAlways.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/InlineAlways.cpp b/llvm/lib/Transforms/IPO/InlineAlways.cpp index 0c9bd38937f..a4b5d6fbddd 100644 --- a/llvm/lib/Transforms/IPO/InlineAlways.cpp +++ b/llvm/lib/Transforms/IPO/InlineAlways.cpp @@ -1,4 +1,4 @@ -//===- InlineAlways.cpp - Code to perform simple function inlining --------===// +//===- InlineAlways.cpp - Code to inline always_inline functions ----------===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// // -// This file implements bottom-up inlining of functions into callees. +// This file implements a custom inliner that handles only functions that +// are markes as "always inline". // //===----------------------------------------------------------------------===// |

