This is https://bugs.llvm.org//show_bug.cgi?id=39418.
Currently, when LLD do ICF it checks if the output section name is the same,
but that works only for no linker script case.
We create output sections and assign input sections much later.
The patch adds logic to predict the output sections earlier, so that
we can ICF in a more correct way without complicated changes to linker design.
I used the test case provided on the PR page. Thanks, Andrew Ng :)