[llvm-commits] [llvm] r55716 - /llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp

Devang Patel dpatel at apple.com
Wed Sep 3 12:52:17 PDT 2008


Author: dpatel
Date: Wed Sep  3 14:52:17 2008
New Revision: 55716

URL: http://llvm.org/viewvc/llvm-project?rev=55716&view=rev
Log:
Fix comments.

Modified:
    llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp

Modified: llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp?rev=55716&r1=55715&r2=55716&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/InlineAlways.cpp Wed Sep  3 14:52:17 2008
@@ -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".
 //
 //===----------------------------------------------------------------------===//
 





More information about the llvm-commits mailing list