diff options
author | Valentin Clement (バレンタイン クレメン) <clementval@gmail.com> | 2025-04-30 14:59:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-30 14:59:06 -0700 |
commit | d759ea67cf1842fbcaaa768f3f7e79a324820b41 (patch) | |
tree | c3ca0020449e03dc49c4d2c7f7148c84d2720e52 | |
parent | ba3a46c1eaea31ce4135fe30d34ede660dd2c680 (diff) | |
download | llvm-revert-138029-cuf_stdint64_t.zip llvm-revert-138029-cuf_stdint64_t.tar.gz llvm-revert-138029-cuf_stdint64_t.tar.bz2 |
Revert "[flang][cuda] Fix type of kNoAsyncObject (#138029)"revert-138029-cuf_stdint64_t
This reverts commit ba3a46c1eaea31ce4135fe30d34ede660dd2c680.
-rw-r--r-- | flang-rt/include/flang-rt/runtime/descriptor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flang-rt/include/flang-rt/runtime/descriptor.h b/flang-rt/include/flang-rt/runtime/descriptor.h index c98e6b1..19cfeeb 100644 --- a/flang-rt/include/flang-rt/runtime/descriptor.h +++ b/flang-rt/include/flang-rt/runtime/descriptor.h @@ -30,7 +30,7 @@ #include <cstring> /// Value used for asyncObject when no specific stream is specified. -static constexpr std::int64_t *kNoAsyncObject = nullptr; +static constexpr void *kNoAsyncObject = nullptr; namespace Fortran::runtime { |