summaryrefslogtreecommitdiff
path: root/test/FixIt
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-04-02 22:10:06 +0000
committerEric Christopher <echristo@gmail.com>2015-04-02 22:10:06 +0000
commit2f07baafb20d00426f27b2e5bd99ec7f5f598a63 (patch)
tree78c528ee0e4e0afc9bb61c3dd99777abbd370f36 /test/FixIt
parent86e816057520006b3312e6faf6cc2ac1c8618583 (diff)
Unify warnings/errors from "maybe you meant" to "did you mean".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@233981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FixIt')
-rw-r--r--test/FixIt/fixit-recursive-block.c2
-rw-r--r--test/FixIt/fixit.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/FixIt/fixit-recursive-block.c b/test/FixIt/fixit-recursive-block.c
index b276b417ac..3793f825f6 100644
--- a/test/FixIt/fixit-recursive-block.c
+++ b/test/FixIt/fixit-recursive-block.c
@@ -5,7 +5,7 @@
int main() {
void (^arc_fail)() = ^() { // expected-warning {{block pointer variable 'arc_fail' is uninitialized when captured by block}} \
- // expected-note {{maybe you meant to use __block 'arc_fail'}}
+ // expected-note {{did you mean to use __block 'arc_fail'}}
arc_fail(); // BOOM
};
}
diff --git a/test/FixIt/fixit.cpp b/test/FixIt/fixit.cpp
index 585c216f90..6c2fb7faf1 100644
--- a/test/FixIt/fixit.cpp
+++ b/test/FixIt/fixit.cpp
@@ -344,7 +344,7 @@ namespace PR15045 {
int f() {
Cl0 c;
- return c->a; // expected-error {{member reference type 'PR15045::Cl0' is not a pointer; maybe you meant to use '.'?}}
+ return c->a; // expected-error {{member reference type 'PR15045::Cl0' is not a pointer; did you mean to use '.'?}}
}
}