You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is exactly your problem, but godbolt's ASM for this example (https://rust.godbolt.org/z/_Wczb9) doesn't have the problem, so it might be.
The text was updated successfully, but these errors were encountered:
shepmaster
added
bug
The playground isn't doing what it was intended to
help wanted
Not immediately going to be prioritized — ask for mentoring instructions!
labels
Sep 17, 2018
Thanks @scottmcm! Looks like this broke when LLVM comments assembly were added with #397 - the regex isn't expecting a '#' to be present in a line that declares a label.
The addition of LLVM comments to the generated
asm has prevented the filtering script from
recognizing some labels. This commit fixes
the missing labels and should keep comments
in the filtered asm.
I don't know if this is exactly your problem, but godbolt's ASM for this example (https://rust.godbolt.org/z/_Wczb9) doesn't have the problem, so it might be.
Repro: https://play.rust-lang.org/?gist=f5e688bd60fb8de5018b31d4f05e7ab5&version=nightly&mode=release&edition=2015
Note the jump to
LBB6_10
, which is a label not in the output.Turn off name filtering, and you get instead
Which has the
LBB6_10
label, as it should.(Sorry for not reducing the repro.)
The text was updated successfully, but these errors were encountered: