aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-03 19:52:17 +0000
committerDevang Patel <dpatel@apple.com>2008-09-03 19:52:17 +0000
commit74625384e661880102167eacf25bf95042d2d54b (patch)
treefc5b5b703920473217b7407175fd3ed324defec8 /lib/Transforms/IPO
parenta73199dc8042d794aecc76818279849042115ef1 (diff)
downloadexternal_llvm-74625384e661880102167eacf25bf95042d2d54b.zip
external_llvm-74625384e661880102167eacf25bf95042d2d54b.tar.gz
external_llvm-74625384e661880102167eacf25bf95042d2d54b.tar.bz2
Fix comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r--lib/Transforms/IPO/InlineAlways.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/InlineAlways.cpp b/lib/Transforms/IPO/InlineAlways.cpp
index 0c9bd38..a4b5d6f 100644
--- a/lib/Transforms/IPO/InlineAlways.cpp
+++ b/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".
//
//===----------------------------------------------------------------------===//