summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/IntrinsicLowering.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-28 22:26:42 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-28 22:26:42 +0000
commite5da2c075e5b15b424d1e763e1bfac35f6470432 (patch)
treea15012c7376fb6a469028d871da110c861852a95 /include/llvm/CodeGen/IntrinsicLowering.h
parent6aa279dc8b5a05499b2cd158f8187d7225adc4f4 (diff)
downloadllvm-e5da2c075e5b15b424d1e763e1bfac35f6470432.tar.gz
llvm-e5da2c075e5b15b424d1e763e1bfac35f6470432.tar.bz2
llvm-e5da2c075e5b15b424d1e763e1bfac35f6470432.tar.xz
Adjust a comment to reflect reality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/IntrinsicLowering.h')
-rw-r--r--include/llvm/CodeGen/IntrinsicLowering.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h
index ae7526c369..f429336d83 100644
--- a/include/llvm/CodeGen/IntrinsicLowering.h
+++ b/include/llvm/CodeGen/IntrinsicLowering.h
@@ -31,10 +31,10 @@ namespace llvm {
/// inserted into the module specified.
void AddPrototypes(Module &M);
- /// LowerIntrinsicCall - This method returns the LLVM function which should
- /// be used to implement the specified intrinsic function call. If an
- /// intrinsic function must be implemented by the code generator (such as
- /// va_start), this function should print a message and abort.
+ /// LowerIntrinsicCall - This method replaces a call with the LLVM function
+ /// which should be used to implement the specified intrinsic function call.
+ /// If an intrinsic function must be implemented by the code generator
+ /// (such as va_start), this function should print a message and abort.
///
/// Otherwise, if an intrinsic function call can be lowered, the code to
/// implement it (often a call to a non-intrinsic function) is inserted