[clang] [CIR] Implement__builtin_va_arg (PR #153834)
Henrich Lauko via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 16 07:48:55 PDT 2025
================
@@ -3415,4 +3415,126 @@ def CIR_FAbsOp : CIR_UnaryFPToFPBuiltinOp<"fabs", "FAbsOp"> {
}];
}
+//===----------------------------------------------------------------------===//
+// Variadic Operations
+//===----------------------------------------------------------------------===//
+
+def CIR_VAStartOp : CIR_Op<"va.start"> {
----------------
xlauko wrote:
To be more consistent in naming:
```suggestion
def CIR_VAStartOp : CIR_Op<"va_start"> {
```
and update its uses elsewhere.
https://github.com/llvm/llvm-project/pull/153834
More information about the cfe-commits
mailing list