mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[frontend] Added support for parsing the “-emit-verbose-sil” frontend argument.
This is not yet hooked up anywhere (beyond FrontendOptions), since the integrated frontend does not yet know how to emit SIL. Swift SVN r11161
This commit is contained in:
@@ -31,9 +31,16 @@ public:
|
||||
/// The name of the module which the frontend is building.
|
||||
std::string ModuleName;
|
||||
|
||||
/// Indicates that the frontend should emit "verbose" SIL
|
||||
/// (if asked to emit SIL).
|
||||
bool EmitVerboseSIL;
|
||||
|
||||
/// Path to a file which should contain serialized diagnostics for this
|
||||
/// frontend invocation.
|
||||
std::string SerializedDiagnosticsPath;
|
||||
|
||||
FrontendOptions() : InputFilenames(), OutputFilename(), ModuleName(),
|
||||
EmitVerboseSIL(false), SerializedDiagnosticsPath() {};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user