Fix an FLAT OUT WRONG comment
[oota-llvm.git] / include / llvm / Transforms / Utils / Cloning.h
index 99aaccde8b281b5a8dcc74c4e8b1c151961af3f2..6fe722e2d3f2835cc2cb6db7ed39dacbb6cc05dd 100644 (file)
@@ -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