[llvm-commits] [llvm] r49661 - /llvm/trunk/include/llvm/Target/TargetLowering.h
Dan Gohman
gohman at apple.com
Mon Apr 14 10:45:20 PDT 2008
Author: djg
Date: Mon Apr 14 12:45:20 2008
New Revision: 49661
URL: http://llvm.org/viewvc/llvm-project?rev=49661&view=rev
Log:
Clean up some comments.
Modified:
llvm/trunk/include/llvm/Target/TargetLowering.h
Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=49661&r1=49660&r2=49661&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Mon Apr 14 12:45:20 2008
@@ -952,7 +952,7 @@
/// memcpy. This can be used by targets to provide code sequences for cases
/// that don't fit the target's parameters for simple loads/stores and can be
/// more efficient than using a library call. This function can return a null
- /// SDOperand if the target declines to use inline code and a different
+ /// SDOperand if the target declines to use custom code and a different
/// lowering strategy should be used.
///
/// If AlwaysInline is true, the size is constant and the target should not
@@ -976,8 +976,8 @@
/// memmove. This can be used by targets to provide code sequences for cases
/// that don't fit the target's parameters for simple loads/stores and can be
/// more efficient than using a library call. This function can return a null
- /// SDOperand if the target declines to use code and a different lowering
- /// strategy should be used.
+ /// SDOperand if the target declines to use custom code and a different
+ /// lowering strategy should be used.
virtual SDOperand
EmitTargetCodeForMemmove(SelectionDAG &DAG,
SDOperand Chain,
@@ -992,8 +992,8 @@
/// memset. This can be used by targets to provide code sequences for cases
/// that don't fit the target's parameters for simple stores and can be more
/// efficient than using a library call. This function can return a null
- /// SDOperand if the target declines to use code and a different lowering
- /// strategy should be used.
+ /// SDOperand if the target declines to use custom code and a different
+ /// lowering strategy should be used.
virtual SDOperand
EmitTargetCodeForMemset(SelectionDAG &DAG,
SDOperand Chain,
More information about the llvm-commits
mailing list