aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSanjiv Gupta <sanjiv.gupta@microchip.com>2009-07-30 09:12:56 +0000
committerSanjiv Gupta <sanjiv.gupta@microchip.com>2009-07-30 09:12:56 +0000
commita114baa5bf0d70aed8b8cf576a864005c0d6a128 (patch)
tree1a7b5665b5be29c2c14c4d15271950bf0e9ad189 /include
parent7216920791e3374078bb72c5faf416168eaf042c (diff)
downloadexternal_llvm-a114baa5bf0d70aed8b8cf576a864005c0d6a128.zip
external_llvm-a114baa5bf0d70aed8b8cf576a864005c0d6a128.tar.gz
external_llvm-a114baa5bf0d70aed8b8cf576a864005c0d6a128.tar.bz2
Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rather than hardcoding them in DAG lowering.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/RuntimeLibcalls.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/RuntimeLibcalls.h b/include/llvm/CodeGen/RuntimeLibcalls.h
index 7f2c8bc..ae708c9 100644
--- a/include/llvm/CodeGen/RuntimeLibcalls.h
+++ b/include/llvm/CodeGen/RuntimeLibcalls.h
@@ -224,6 +224,11 @@ namespace RTLIB {
O_F32,
O_F64,
+ // MEMORY
+ MEMCPY,
+ MEMSET,
+ MEMMOVE,
+
// EXCEPTION HANDLING
UNWIND_RESUME,