summaryrefslogtreecommitdiff
path: root/include/llvm/Intrinsics.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-12 18:10:10 +0000
committerChris Lattner <sabre@nondot.org>2004-02-12 18:10:10 +0000
commit0eb51b440c4ea7eba82964047221e17758de2057 (patch)
treebc271061cb7364813421d033d688ff4e7c549ce6 /include/llvm/Intrinsics.h
parent5ab827ff4a62faa276c8422df57d87d4b3eb2066 (diff)
downloadllvm-0eb51b440c4ea7eba82964047221e17758de2057.tar.gz
llvm-0eb51b440c4ea7eba82964047221e17758de2057.tar.bz2
llvm-0eb51b440c4ea7eba82964047221e17758de2057.tar.xz
Add support for the llvm.memmove intrinsic.
Patch graciously contributed by Reid Spencer! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.h')
-rw-r--r--include/llvm/Intrinsics.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h
index 098d5d4abd..125105dd30 100644
--- a/include/llvm/Intrinsics.h
+++ b/include/llvm/Intrinsics.h
@@ -45,7 +45,9 @@ namespace Intrinsic {
dbg_declare, // Declare a local object
// Standard libc functions...
- memcpy,
+ memcpy, // Used to copy non-overlapping memory blocks
+ memmove, // Used to copy overlapping memory blocks
+
// Standard libm functions...