diff options
author | Chris Lattner <sabre@nondot.org> | 2011-04-15 05:22:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-04-15 05:22:18 +0000 |
commit | fc8f0e14ad142ed811e90fbd9a30e419e301c717 (patch) | |
tree | e28c40d1592d5c0898c3b5b4ad16efd0d50ce741 /test | |
parent | c6eb44b321c543c5bcf28727228a0cceced57e2e (diff) |
fix a bunch of comment typos found by codespell. Patch by
Luis Felipe Strano Moraes!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129559 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Analysis/bstring.c | 2 | ||||
-rw-r--r-- | test/Analysis/idempotent-operations.c | 2 | ||||
-rw-r--r-- | test/Analysis/misc-ps-eager-assume.m | 2 | ||||
-rw-r--r-- | test/Analysis/string.c | 2 | ||||
-rw-r--r-- | test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p4.cpp | 2 | ||||
-rw-r--r-- | test/CodeGen/builtins.c | 2 | ||||
-rw-r--r-- | test/CodeGen/char-literal.c | 2 | ||||
-rw-r--r-- | test/CodeGenCXX/debug-info-byval.cpp | 2 | ||||
-rw-r--r-- | test/CodeGenCXX/vtable-linkage.cpp | 2 | ||||
-rw-r--r-- | test/Driver/ast.c | 2 | ||||
-rw-r--r-- | test/Preprocessor/pragma-pushpop-macro.c | 2 | ||||
-rw-r--r-- | test/SemaObjC/property-13.m | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/test/Analysis/bstring.c b/test/Analysis/bstring.c index 08b93c64a1..c5847fe769 100644 --- a/test/Analysis/bstring.c +++ b/test/Analysis/bstring.c @@ -15,7 +15,7 @@ // Some functions are implemented as builtins. These should be #defined as // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined. -// Functions that have variants and are also availabe as builtins should be +// Functions that have variants and are also available as builtins should be // declared carefully! See memcpy() for an example. #ifdef USE_BUILTINS diff --git a/test/Analysis/idempotent-operations.c b/test/Analysis/idempotent-operations.c index 004a345639..10bd9ff319 100644 --- a/test/Analysis/idempotent-operations.c +++ b/test/Analysis/idempotent-operations.c @@ -176,7 +176,7 @@ int false6() { // Check that assignments filter out false positives correctly int false7() { - int zero = 0; // psuedo-constant + int zero = 0; // pseudo-constant int one = 1; int a = 55; diff --git a/test/Analysis/misc-ps-eager-assume.m b/test/Analysis/misc-ps-eager-assume.m index e9459ef78d..649c4b07f5 100644 --- a/test/Analysis/misc-ps-eager-assume.m +++ b/test/Analysis/misc-ps-eager-assume.m @@ -81,7 +81,7 @@ void pr3836(int *a, int *b) { //===---------------------------------------------------------------------===// // <rdar://problem/7342806> -// This false positive occured because the symbolic constraint on a short was +// This false positive occurred because the symbolic constraint on a short was // not maintained via sign extension. The analyzer doesn't properly handle // the sign extension, but now tracks the constraint. This particular // case relies on -analyzer-eagerly-assume because of the expression diff --git a/test/Analysis/string.c b/test/Analysis/string.c index a68b4d7759..810258a9a3 100644 --- a/test/Analysis/string.c +++ b/test/Analysis/string.c @@ -15,7 +15,7 @@ // Some functions are implemented as builtins. These should be #defined as // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined. -// Functions that have variants and are also availabe as builtins should be +// Functions that have variants and are also available as builtins should be // declared carefully! See memcpy() for an example. #ifdef USE_BUILTINS diff --git a/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p4.cpp b/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p4.cpp index 15efd72c14..07eec1edbe 100644 --- a/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p4.cpp +++ b/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p4.cpp @@ -4,4 +4,4 @@ void f0() { } -inline void f0(); // expected-error {{function definition cannot preceed inline declaration}} +inline void f0(); // expected-error {{function definition cannot precede inline declaration}} diff --git a/test/CodeGen/builtins.c b/test/CodeGen/builtins.c index 40f77249f9..fca087e197 100644 --- a/test/CodeGen/builtins.c +++ b/test/CodeGen/builtins.c @@ -138,7 +138,7 @@ void bar() { // LLVM's hex representation of float constants is really unfortunate; // basically it does a float-to-double "conversion" and then prints the - // hex form of that. That gives us wierd artifacts like exponents + // hex form of that. That gives us weird artifacts like exponents // that aren't numerically similar to the original exponent and // significand bit-patterns that are offset by three bits (because // the exponent was expanded from 8 bits to 11). diff --git a/test/CodeGen/char-literal.c b/test/CodeGen/char-literal.c index aff76d280d..322041c004 100644 --- a/test/CodeGen/char-literal.c +++ b/test/CodeGen/char-literal.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -x c++ -triple i386-unknown-unkown -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -x c++ -triple i386-unknown-unknown -emit-llvm %s -o - | FileCheck %s // Runs in c++ mode so that wchar_t is available. int main() { diff --git a/test/CodeGenCXX/debug-info-byval.cpp b/test/CodeGenCXX/debug-info-byval.cpp index c99518e7a6..f0cb6d68c8 100644 --- a/test/CodeGenCXX/debug-info-byval.cpp +++ b/test/CodeGenCXX/debug-info-byval.cpp @@ -1,5 +1,5 @@ // RUN: %clang -g -S %s -o - | FileCheck %s -// Test to check presense of debug info for byval parameter. +// Test to check presence of debug info for byval parameter. // Radar 8350436. class DAG { public: diff --git a/test/CodeGenCXX/vtable-linkage.cpp b/test/CodeGenCXX/vtable-linkage.cpp index fc14c71a0e..4633a3fe95 100644 --- a/test/CodeGenCXX/vtable-linkage.cpp +++ b/test/CodeGenCXX/vtable-linkage.cpp @@ -203,7 +203,7 @@ void G_f0() { new G<int>(); } // RUN: FileCheck --check-prefix=CHECK-H %s < %t // H<int> has a key function without a body but it's a template instantiation -// so its VTable must be emmitted. +// so its VTable must be emitted. // CHECK-H: @_ZTV1HIiE = linkonce_odr unnamed_addr constant template <typename T> class H { diff --git a/test/Driver/ast.c b/test/Driver/ast.c index 6e5857fba5..e9fbb068d9 100644 --- a/test/Driver/ast.c +++ b/test/Driver/ast.c @@ -22,5 +22,5 @@ // COMPILE-AST-PHASES: END // FIXME: There is a problem with compiling AST's in that the input language is -// not availabe for use by other tools (for example, to automatically add +// not available for use by other tools (for example, to automatically add // -lstdc++). We may need -x [objective-]c++-ast and all that goodness. :( diff --git a/test/Preprocessor/pragma-pushpop-macro.c b/test/Preprocessor/pragma-pushpop-macro.c index 71b0e0e260..08a65704e4 100644 --- a/test/Preprocessor/pragma-pushpop-macro.c +++ b/test/Preprocessor/pragma-pushpop-macro.c @@ -25,7 +25,7 @@ int pmx3 = X; #pragma pop_macro("Y") int pmy1 = Y; -// Have a stray 'push' to show we don't crash when having inbalanced +// Have a stray 'push' to show we don't crash when having imbalanced // push/pop #pragma push_macro("Y") #define Y 4 diff --git a/test/SemaObjC/property-13.m b/test/SemaObjC/property-13.m index 6d56dabb9c..2ca3416526 100644 --- a/test/SemaObjC/property-13.m +++ b/test/SemaObjC/property-13.m @@ -48,7 +48,7 @@ void abort(void); int main () { Test *x = [[Test alloc] init]; - /* 1. Test of a requred property */ + /* 1. Test of a required property */ x.required1 = 100; if (x.required1 != 100) abort (); |