When coding in C/C++/Objective-C in Xcode I can use Product > Perform Action > Assemble "file.c" to view this file assembler result. But this action is always disabled for .swift files. Why so?
How can I inspect assembler produced by Swift complier? Doesn't Xcode have this functionality yet? What are the other options?
I'm interested in generated assembler for inspecting high performance tight loops in my own code.