Xcode 6 and Xcode 7 (up to the current Xcode 7.3) do not offer the ability to view the generated assembly file for Swift input. (Perhaps this feature will be added in a later release.)
Currently, the only way I know is to call the compiler on the command line with the option "-emit-assembly", for example
xcrun -sdk macosx swiftc -emit-assembly main.swift
Martin r
source share