split dump() into two functions, LLDB doesn't know about default arguments.

Swift SVN r8551
This commit is contained in:
Chris Lattner
2013-09-22 00:38:00 +00:00
parent 361aba5f68
commit cac7969c33

View File

@@ -163,7 +163,8 @@ public:
void verify() const;
/// Pretty-print the SILFunction.
void dump(bool Verbose = false) const;
void dump(bool Verbose) const;
void dump() const { dump(false); }
/// Pretty-print the SILFunction with the designated stream as a 'sil'
/// definition.