[Mlir-commits] [mlir] [MLIR][LLVM] Add vararg support in LLVM::LLVMFuncOp (PR #67274)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Mon Sep 25 02:20:52 PDT 2023


================
@@ -1133,6 +1172,8 @@ LogicalResult CallOp::verifySymbolUses(SymbolTableCollection &symbolTable) {
 void CallOp::print(OpAsmPrinter &p) {
   auto callee = getCallee();
   bool isDirect = callee.has_value();
+  auto calleeType = *getCalleeType();
----------------
ftynse wrote:

Please expand auto unless the type is obvious from context, e.g. cast on the RHS, or annoying to spell out.

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


More information about the Mlir-commits mailing list