From ba3a46c1eaea31ce4135fe30d34ede660dd2c680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Clement=20=28=E3=83=90=E3=83=AC=E3=83=B3?= =?UTF-8?q?=E3=82=BF=E3=82=A4=E3=83=B3=20=E3=82=AF=E3=83=AC=E3=83=A1?= =?UTF-8?q?=E3=83=B3=29?= Date: Wed, 30 Apr 2025 14:59:02 -0700 Subject: [PATCH] [flang][cuda] Fix type of kNoAsyncObject (#138029) --- flang-rt/include/flang-rt/runtime/descriptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang-rt/include/flang-rt/runtime/descriptor.h b/flang-rt/include/flang-rt/runtime/descriptor.h index 19cfeeb1e9dd..c98e6b14850c 100644 --- a/flang-rt/include/flang-rt/runtime/descriptor.h +++ b/flang-rt/include/flang-rt/runtime/descriptor.h @@ -30,7 +30,7 @@ #include /// Value used for asyncObject when no specific stream is specified. -static constexpr void *kNoAsyncObject = nullptr; +static constexpr std::int64_t *kNoAsyncObject = nullptr; namespace Fortran::runtime {