Fix comments.

llvm-svn: 55716
This commit is contained in:
Devang Patel 2008-09-03 19:52:17 +00:00
parent b86a788862
commit 50c66cdb0d
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
//===- InlineAlways.cpp - Code to perform simple function inlining --------===// //===- InlineAlways.cpp - Code to inline always_inline functions ----------===//
// //
// The LLVM Compiler Infrastructure // 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".
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//