File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: eb87791365cbbc9e2097daf562bba0d3853bda63
2
+ refs/heads/master: 4aec2e1ea99e81214f3d72ae2fef4730c65f77d8
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
Original file line number Diff line number Diff line change @@ -221,7 +221,9 @@ class alignas(8) Pattern {
221
221
222
222
void print (llvm::raw_ostream &OS,
223
223
const PrintOptions &Options = PrintOptions ()) const ;
224
- void dump () const ;
224
+ LLVM_ATTRIBUTE_DEPRECATED (
225
+ void dump () const LLVM_ATTRIBUTE_USED,
226
+ " only for use within the debugger" );
225
227
226
228
// / walk - This recursively walks the AST rooted at this pattern.
227
229
Pattern *walk (ASTWalker &walker);
Original file line number Diff line number Diff line change @@ -160,7 +160,9 @@ class alignas(8) TypeRepr {
160
160
161
161
void print (raw_ostream &OS, const PrintOptions &Opts = PrintOptions ()) const ;
162
162
void print (ASTPrinter &Printer, const PrintOptions &Opts) const ;
163
- void dump () const ;
163
+ LLVM_ATTRIBUTE_DEPRECATED (
164
+ void dump () const LLVM_ATTRIBUTE_USED,
165
+ " only for use within the debugger" );
164
166
165
167
// / Clone the given type representation.
166
168
TypeRepr *clone (const ASTContext &ctx) const ;
You can’t perform that action at this time.
0 commit comments