[clang] [clang][Interp] Fix function pointer callexpr eval order (PR #101821)

2024-08-03 Thread LLVM Continuous Integration via cfe-commits
llvm-ci wrote: LLVM Buildbot has detected a new failure on builder `clang-aarch64-sve-vls` running on `linaro-g3-02` while building `clang` at step 7 "ninja check 1". Full details are available at: https://lab.llvm.org/buildbot/#/builders/143/builds/1240 Here is the relevant piece of the buil

[clang] [clang][Interp] Fix function pointer callexpr eval order (PR #101821)

2024-08-03 Thread Timm Baeder via cfe-commits
https://github.com/tbaederr closed https://github.com/llvm/llvm-project/pull/101821 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][Interp] Fix function pointer callexpr eval order (PR #101821)

2024-08-03 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Timm Baeder (tbaederr) Changes We need to evaluate the callee before the arguments. --- Full diff: https://github.com/llvm/llvm-project/pull/101821.diff 2 Files Affected: - (modified) clang/lib/AST/Interp/Compiler.cpp (+13-9) - (modifi

[clang] [clang][Interp] Fix function pointer callexpr eval order (PR #101821)

2024-08-03 Thread Timm Baeder via cfe-commits
https://github.com/tbaederr created https://github.com/llvm/llvm-project/pull/101821 We need to evaluate the callee before the arguments. >From ef92f7ef23014f001630fe9d30cdf7c39d19bfbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Sat, 3 Aug 2024 15:06:12 +0200 Subject: [P