diff options
Diffstat (limited to 'clang/test/Preprocessor')
3 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h index b809c9075d6..0afe145ee32 100644 --- a/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h @@ -1,3 +1,3 @@ #pragma once -#warning findme.h successfully included using MS search rules
\ No newline at end of file +#warning findme.h successfully included using Microsoft header search rules diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h index aeaf795a1a8..b080cd80df2 100644 --- a/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h @@ -1,3 +1,3 @@ #pragma once -#error Wrong findme.h included, MSVC header search incorrect
\ No newline at end of file +#error Wrong findme.h included, Microsoft header search incorrect diff --git a/clang/test/Preprocessor/microsoft-header-search.c b/clang/test/Preprocessor/microsoft-header-search.c index 2cdc54e5c41..875bffe8793 100644 --- a/clang/test/Preprocessor/microsoft-header-search.c +++ b/clang/test/Preprocessor/microsoft-header-search.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -I%S/Inputs/microsoft-header-search %s -fms-compatibility -verify -// expected-warning@Inputs/microsoft-header-search/a/findme.h:3 {{findme.h successfully included using MS search rules}} -// expected-warning@Inputs/microsoft-header-search/a/b/include3.h:3 {{#include resolved using non-portable MSVC search rules as}} +// expected-warning@Inputs/microsoft-header-search/a/findme.h:3 {{findme.h successfully included using Microsoft header search rules}} +// expected-warning@Inputs/microsoft-header-search/a/b/include3.h:3 {{#include resolved using non-portable Microsoft search rules as}} // expected-warning@Inputs/microsoft-header-search/falsepos.h:3 {{successfully resolved the falsepos.h header}} |