summaryrefslogtreecommitdiff
path: root/utils/TableGen/IntrinsicEmitter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-02-06 18:02:54 +0000
committerJim Laskey <jlaskey@mac.com>2007-02-06 18:02:54 +0000
commitba4cc09f51eaf7bf7dff12bb4bb405caab3c29d1 (patch)
treed3cb20b6a959aec67805d5619906572c775cf5a3 /utils/TableGen/IntrinsicEmitter.cpp
parent53a58106d418db0acfe6a0c0821164158ed1ef2b (diff)
downloadllvm-ba4cc09f51eaf7bf7dff12bb4bb405caab3c29d1.tar.gz
llvm-ba4cc09f51eaf7bf7dff12bb4bb405caab3c29d1.tar.bz2
llvm-ba4cc09f51eaf7bf7dff12bb4bb405caab3c29d1.tar.xz
Support var arg intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33962 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/IntrinsicEmitter.cpp')
-rw-r--r--utils/TableGen/IntrinsicEmitter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp
index 7cd03751de..9a1132a275 100644
--- a/utils/TableGen/IntrinsicEmitter.cpp
+++ b/utils/TableGen/IntrinsicEmitter.cpp
@@ -109,6 +109,11 @@ EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints,
}
static void EmitTypeVerify(std::ostream &OS, Record *ArgType) {
+ if (ArgType->getValueAsString("TypeVal") == "...") {
+ OS << "-2, ";
+ return;
+ }
+
OS << "(int)" << ArgType->getValueAsString("TypeVal") << ", ";
// If this is an integer type, check the width is correct.
if (ArgType->isSubClassOf("LLVMIntegerType"))