As funny as it might look, this wasn't what I intended to test.
authorBenjamin Kramer <benny.kra@googlemail.com>
Tue, 8 Jul 2014 16:42:54 +0000 (16:42 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Tue, 8 Jul 2014 16:42:54 +0000 (16:42 +0000)
llvm-svn: 212549

clang-tools-extra/test/clang-tidy/llvm-twine-local.cpp

index dc8f8f0..4794b72 100644 (file)
@@ -15,19 +15,19 @@ using namespace llvm;
 void foo(const Twine &x);
 
 static Twine Moo = Twine("bark") + "bah";
-// CHECK-MASSAGES: twine variables are prone to use-after-free bugs
+// CHECK-MESSAGES: twine variables are prone to use-after-free bugs
 // CHECK-MESSAGES: note: FIX-IT applied suggested code changes
 // CHECK: static std::string Moo = (Twine("bark") + "bah").str();
 
 int main() {
   const Twine t = Twine("a") + "b" + Twine(42);
-// CHECK-MASSAGES: twine variables are prone to use-after-free bugs
+// CHECK-MESSAGES: twine variables are prone to use-after-free bugs
 // CHECK-MESSAGES: note: FIX-IT applied suggested code changes
 // CHECK: std::string t = (Twine("a") + "b" + Twine(42)).str();
   foo(Twine("a") + "b");
 
   Twine Prefix = false ? "__INT_FAST" : "__UINT_FAST";
-// CHECK-MASSAGES: twine variables are prone to use-after-free bugs
+// CHECK-MESSAGES: twine variables are prone to use-after-free bugs
 // CHECK-MESSAGES: note: FIX-IT applied suggested code changes
 // CHECK: const char * Prefix = false ? "__INT_FAST" : "__UINT_FAST";
 }