[compiler-rt] [Darwin][ASan][Test] Create a noinlined wrapper function for reliable suppression in test. (PR #131194)

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 16:02:53 PDT 2025


================
@@ -13,12 +13,17 @@
 
 #include <CoreFoundation/CoreFoundation.h>
 
+// Use a noinline wrapper function to suppress to stabilize test.
+__attribute__((noinline)) CFStringRef createCFString(const unsigned char *bytes,
+                                                     CFIndex length) {
+  return CFStringCreateWithBytes(kCFAllocatorDefault, bytes, length,
+                                 kCFStringEncodingUTF8, FALSE);
+}
+
 int main() {
   char *a = (char *)malloc(6);
   strcpy(a, "hello");
-  CFStringRef str =
-      CFStringCreateWithBytes(kCFAllocatorDefault, (unsigned char *)a, 10,
-                              kCFStringEncodingUTF8, FALSE);  // BOOM
+  CFStringRef str = createCFString((unsigned char *)a, 10); // BOOM
----------------
yln wrote:

Got it, thanks for trying it out!

https://github.com/llvm/llvm-project/pull/131194


More information about the llvm-commits mailing list