aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-31 19:37:29 +0000
committerChris Lattner <sabre@nondot.org>2003-08-31 19:37:29 +0000
commita04e51f4c0dd981af9b8f6e8b219df495cccaa45 (patch)
treed5956ba4679706d41966b8317bf6c89654da40a3 /include
parent6c5fd8e0551f99ce46908fedd502b0dbf5864c74 (diff)
downloadexternal_llvm-a04e51f4c0dd981af9b8f6e8b219df495cccaa45.zip
external_llvm-a04e51f4c0dd981af9b8f6e8b219df495cccaa45.tar.gz
external_llvm-a04e51f4c0dd981af9b8f6e8b219df495cccaa45.tar.bz2
Fix an FLAT OUT WRONG comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/Utils/Cloning.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h
index 99aaccd..6fe722e 100644
--- a/include/llvm/Transforms/Utils/Cloning.h
+++ b/include/llvm/Transforms/Utils/Cloning.h
@@ -83,8 +83,9 @@ void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
/// InlineFunction - This function inlines the called function into the basic
-/// block of the caller. This returns true if it is not possible to inline this
-/// call. The program is still in a well defined state if this occurs though.
+/// block of the caller. This returns false if it is not possible to inline
+/// this call. The program is still in a well defined state if this occurs
+/// though.
///
/// Note that this only does one level of inlining. For example, if the
/// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now