[flang-commits] [flang] Reland [flang] In AllocMemOp lowering, convert types for calling malloc on 32-bit (PR #130386)
via flang-commits
flang-commits at lists.llvm.org
Mon Mar 10 03:49:52 PDT 2025
================
@@ -4,6 +4,10 @@
! RUN: %flang_fc1 -emit-llvm -fopenmp -o - %s 2>&1 \
! RUN: | FileCheck %s
+! UNSUPPORTED: target-x86
+! UNSUPPORTED: target=sparc-{{.*}}
+! UNSUPPORTED: target=sparcel-{{.*}}
----------------
ArcaneNibble wrote:
I disabled them because they just so happen to invoke `malloc` and thus no longer match exactly on these 32-bit platforms. This is because `malloc` now gets called with an `i32`. I figured it was okay since 32-bit wasn't officially supported or being tested by the public builders.
https://github.com/llvm/llvm-project/pull/130386
More information about the flang-commits
mailing list