[clang] [llvm] [CodeGen][LLVM] Make the `va_list` related intrinsics generic. (PR #85460)

Alex Voicu via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 22 12:19:14 PDT 2024


================
@@ -1318,16 +1318,16 @@ define void @instructions.va_arg(i8* %v, ...) {
   %ap2 = bitcast i8** %ap to i8*
 
   call void @llvm.va_start(i8* %ap2)
-  ; CHECK: call void @llvm.va_start(ptr %ap2)
+  ; CHECK: call void @llvm.va_start.p0(ptr %ap2)
 
   va_arg i8* %ap2, i32
   ; CHECK: va_arg ptr %ap2, i32
-
+s
----------------
AlexVlx wrote:

Done.

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


More information about the cfe-commits mailing list