Kriti Gupta
|
a3dfa4e083
|
[test] Remove occurences of br undef in CodeGen/AMDGPU tests
Differential Revision: https://reviews.llvm.org/D148041
|
2023-04-18 08:47:29 +01:00 |
|
Nuno Lopes
|
047efda60d
|
Revert "[test] Remove occurences of br undef in CodeGen/AMDGPU tests"
This reverts commit 18c594c176036b7ffcd8439ed9c4b08d2085a244.
Build bots broke
|
2023-04-04 13:45:56 +01:00 |
|
Kriti Gupta
|
18c594c176
|
[test] Remove occurences of br undef in CodeGen/AMDGPU tests
Differential Revision: https://reviews.llvm.org/D145622
|
2023-04-04 13:15:44 +01:00 |
|
Matt Arsenault
|
d85e849ff4
|
AMDGPU: Convert some assorted tests to opaque pointers
|
2022-12-01 21:40:30 -05:00 |
|
Mark Searles
|
4e3d6160db
|
Use the return value of UpdateNodeOperands(); in some cases, UpdateNodeOperands() modifies the node in-place and using the return value isn’t strictly necessary. However, it does not necessarily modify the node, but may return a resultant node if it already exists in the DAG. See comments in UpdateNodeOperands(). In that case, the return value must be used to avoid such scenarios as an infinite loop (node is assumed to have been updated, so added back to the worklist, and re-processed; however, node hasn’t changed so it is once again passed to UpdateNodeOperands(), assumed modified, added back to worklist; cycle infinitely repeats).
Differential Revision: https://reviews.llvm.org/D38466
llvm-svn: 315957
|
2017-10-16 23:38:53 +00:00 |
|