Open Quuxplusone opened 6 years ago
Bugzilla Link | PR35482 |
Status | NEW |
Importance | P enhancement |
Reported by | dmajor (dmajor@bugmail.cc) |
Reported on | 2017-11-30 11:27:03 -0800 |
Last modified on | 2019-09-09 08:10:21 -0700 |
Version | unspecified |
Hardware | PC Windows NT |
CC | llvm-bugs@lists.llvm.org |
Fixed by commit(s) | |
Attachments | |
Blocks | |
Blocked by | |
See also |
FWIW, in clang 9.0.0, this no longer hits an unreachable. Now we have:
$ clang-cl -c x.cpp && echo works fine
works fine
$ clang-cl -flto=thin -c x.cpp
error: unknown token in expression
mov $0, %ecx
presumably due to a misunderstanding about Intel versus AT&T syntax.
If I add an explicit ".att_syntax\n\t" to the repro, then it works.