diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2012-07-23 08:59:39 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2012-07-23 08:59:39 +0000 |
commit | 830885ca64588c925f92010c9e8be09443533995 (patch) | |
tree | 9565af71db57c627ff2fa4ab883049dca90ad9f6 /clang/test/Sema/conditional-expr.c | |
parent | 35521e231034815b6962eff0dbbd8ee132038784 (diff) | |
download | bcm5719-llvm-830885ca64588c925f92010c9e8be09443533995.tar.gz bcm5719-llvm-830885ca64588c925f92010c9e8be09443533995.zip |
Fix a typo (the the => the)
llvm-svn: 160622
Diffstat (limited to 'clang/test/Sema/conditional-expr.c')
-rw-r--r-- | clang/test/Sema/conditional-expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/conditional-expr.c b/clang/test/Sema/conditional-expr.c index 184ac4a9e7e..5ff58a2ec47 100644 --- a/clang/test/Sema/conditional-expr.c +++ b/clang/test/Sema/conditional-expr.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wsign-conversion %s void foo() { *(0 ? (double *)0 : (void *)0) = 0; - // FIXME: GCC doesn't consider the the following two statements to be errors. + // FIXME: GCC doesn't consider the following two statements to be errors. *(0 ? (double *)0 : (void *)(int *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} *(0 ? (double *)0 : (void *)(double *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} *(0 ? (double *)0 : (int *)(void *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} expected-warning {{pointer type mismatch ('double *' and 'int *')}} |