[clang] 3f42d34 - [clang][PAC] add ptrauth intptr test (#139338)
via cfe-commits
cfe-commits at lists.llvm.org
Fri May 9 16:38:46 PDT 2025
Author: Oliver Hunt
Date: 2025-05-09T16:38:42-07:00
New Revision: 3f42d34c03096af4f026db2dbe049bbb20f0fddc
URL: https://github.com/llvm/llvm-project/commit/3f42d34c03096af4f026db2dbe049bbb20f0fddc
DIFF: https://github.com/llvm/llvm-project/commit/3f42d34c03096af4f026db2dbe049bbb20f0fddc.diff
LOG: [clang][PAC] add ptrauth intptr test (#139338)
Forgot to actually add the test as part of the `__ptrauth` on intptr PR
Added:
clang/test/Sema/ptrauth-intptr-qualifier.c
Modified:
Removed:
################################################################################
diff --git a/clang/test/Sema/ptrauth-intptr-qualifier.c b/clang/test/Sema/ptrauth-intptr-qualifier.c
new file mode 100644
index 0000000000000..efce95795356e
--- /dev/null
+++ b/clang/test/Sema/ptrauth-intptr-qualifier.c
@@ -0,0 +1,35 @@
+// RUN: %clang_cc1 -triple arm64-apple-ios -fsyntax-only -verify -fptrauth-intrinsics %s
+
+char __ptrauth(0) a;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'char' is invalid}}
+unsigned char __ptrauth(0) b;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'unsigned char' is invalid}}
+short __ptrauth(0) c;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'short' is invalid}}
+unsigned short __ptrauth(0) d;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'unsigned short' is invalid}}
+int __ptrauth(0) e;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'int' is invalid}}
+unsigned int __ptrauth(0) f;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'unsigned int' is invalid}}
+__int128_t __ptrauth(0) g;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; '__int128_t' (aka '__int128') is invalid}}
+unsigned short __ptrauth(0) h;
+// expected-error at -1{{'__ptrauth' qualifier only applies to pointer or pointer sized integer types; 'unsigned short' is invalid}}
+
+unsigned long long __ptrauth(0) i;
+long long __ptrauth(0) j;
+__SIZE_TYPE__ __ptrauth(0) k;
+const unsigned long long __ptrauth(0) l;
+const long long __ptrauth(0) m;
+const __SIZE_TYPE__ __ptrauth(0) n;
+
+struct S1 {
+ __SIZE_TYPE__ __ptrauth(0) f0;
+};
+
+void x(unsigned long long __ptrauth(0) f0);
+// expected-error at -1{{parameter type may not be qualified with '__ptrauth'; type is '__ptrauth(0,0,0) unsigned long long'}}
+
+unsigned long long __ptrauth(0) y();
+// expected-error at -1{{return type may not be qualified with '__ptrauth'; type is '__ptrauth(0,0,0) unsigned long long'}}
More information about the cfe-commits
mailing list