summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-07-11 16:52:29 +0000
committerDuncan Sands <baldrick@free.fr>2008-07-11 16:52:29 +0000
commitdddc6291fb5274282a20d5923b50535d456d34a4 (patch)
tree6e83f3cbdb0c08fa48dbc6944d595a1b27c6cf80 /include
parent7d9843fc374296e85769c820ec9c333be1e74c0a (diff)
downloadllvm-dddc6291fb5274282a20d5923b50535d456d34a4.tar.gz
llvm-dddc6291fb5274282a20d5923b50535d456d34a4.tar.bz2
llvm-dddc6291fb5274282a20d5923b50535d456d34a4.tar.xz
Add support for 128 bit shifts and 32 bit shifts
on 16 bit machines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/RuntimeLibcalls.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/RuntimeLibcalls.h b/include/llvm/CodeGen/RuntimeLibcalls.h
index aae95bf8b0..2b16dd1e4a 100644
--- a/include/llvm/CodeGen/RuntimeLibcalls.h
+++ b/include/llvm/CodeGen/RuntimeLibcalls.h
@@ -29,10 +29,13 @@ namespace RTLIB {
// Integer
SHL_I32,
SHL_I64,
+ SHL_I128,
SRL_I32,
SRL_I64,
+ SRL_I128,
SRA_I32,
SRA_I64,
+ SRA_I128,
MUL_I32,
MUL_I64,
MUL_I128,