aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/adx-builtins.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/adx-builtins.c')
-rw-r--r--test/CodeGen/adx-builtins.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/adx-builtins.c b/test/CodeGen/adx-builtins.c
new file mode 100644
index 000000000000..8738c5d17715
--- /dev/null
+++ b/test/CodeGen/adx-builtins.c
@@ -0,0 +1,18 @@
+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ffreestanding -target-feature +adx -emit-llvm -o - %s | FileCheck %s
+
+#include <x86intrin.h>
+
+unsigned char test_addcarryx_u32(unsigned char __cf, unsigned int __x,
+ unsigned int __y, unsigned int *__p) {
+// CHECK-LABEL: test_addcarryx_u32
+// CHECK: call i8 @llvm.x86.addcarryx.u32
+ return _addcarryx_u32(__cf, __x, __y, __p);
+}
+
+unsigned char test_addcarryx_u64(unsigned char __cf, unsigned long long __x,
+ unsigned long long __y,
+ unsigned long long *__p) {
+// CHECK-LABEL: test_addcarryx_u64
+// CHECK: call i8 @llvm.x86.addcarryx.u64
+ return _addcarryx_u64(__cf, __x, __y, __p);
+}