chapuni wrote:
I've created #95887 (Release notes).
https://github.com/llvm/llvm-project/pull/95496
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
chapuni wrote:
@zmodem #82448 doesn't use intermediate condbitmap but integer index. I decided
not to modify and use the intrinsic `condbitmapupdate`, since the signature
will be quite different and this is too simple to be put into the intrinsic.
Also pre-#82448 impl of `condbitmapupdate` was
zmodem wrote:
> Re. condbitmap.update, it has become useless after #82448 . I think pruning
> it will be the possible way.
Can you expand on this? I'm not familiar with these intrinsics at all. What are
users who were using `condbitmap.update` supposed to call now?
https://github.com/llvm/llv
chapuni wrote:
@zmodem Thanks for the notification.
I supposed release notes may be updated just before the release. I was
wondering how I could propagate changes.
I will fill recent changes to Release notes, later.
Re. condbitmap.update, it has become useless after #82448 . I think pruning it
zmodem wrote:
> Sweep `condbitmap.update`, since it is no longer used.
It's used by Rust:
https://github.com/rust-lang/rust/blob/fd7eefc2753e867053a1c567a7b504ae308e3f85/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp#L1581
What's the migration path? Could you put something in the release not
https://github.com/chapuni closed
https://github.com/llvm/llvm-project/pull/95496
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/evodius96 approved this pull request.
LGTM thanks
https://github.com/llvm/llvm-project/pull/95496
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvmbot wrote:
@llvm/pr-subscribers-pgo
@llvm/pr-subscribers-llvm-transforms
Author: NAKAMURA Takumi (chapuni)
Changes
3rd arg of `tvbitmap.update` was made unused. Remove 3rd arg.
Sweep `condbitmap.update`, since it is no longer used.
---
Full diff: https://github.com/llvm/llvm-project/
https://github.com/chapuni created
https://github.com/llvm/llvm-project/pull/95496
3rd arg of `tvbitmap.update` was made unused. Remove 3rd arg.
Sweep `condbitmap.update`, since it is no longer used.
>From 80e4ff0501e6ba4c30bd94faec03ba3dcd2ad4ee Mon Sep 17 00:00:00 2001
From: NAKAMURA Takumi