Adds a test in X86, exposing a bug in DAG combine eliminating stores that
are the same value but no the same address space.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
No problem - it's in the repo at:
utils/update_llc_test_checks.py ( https://github.com/llvm/llvm-project/blob/main/llvm/utils/update_llc_test_checks.py )
To run it, do something like this:
$ {path to}/update_llc_test_checks.py --llc={path to local}/llc dagcombine-dead-store.ll
Then, you can just run that same command after applying D102096 and rebuilding llc. No need to manually touch the test file unless it looks wrong/excessive.
Comment Actions
I had just found it a minute before this comment. Thanks. We can use this script downstream actually. Thanks for pointing it out.