https://llvm.org/bugs/show_bug.cgi?id=22695
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |FIXED --- Comment #4 from [email protected] --- > Interestingly it works when *NOT* using -save-temps (which makes me wonder what -save-temps actually does): '-save-temps' writes each intermediate file to disk. C -> preprocessed-C -> LLVM bitcode -> assembly language -> obj If you're not saving temps, you you emit object code from the model of the instruction, not the text of the instruction, so it worked because only the asm parser was wrong, not the code emitter. Fixed in r244221 -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list [email protected] http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
