forked from OSchip/llvm-project
[test] Properly test -Werror-implicit-function-declaration and -Wvec-elem-size
Reviewed By: dblaikie Differential Revision: https://reviews.llvm.org/D90874
This commit is contained in:
parent
9914a8737f
commit
247c5b5d69
|
@ -2,9 +2,6 @@
|
|||
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I%S/Inputs/diagnose-missing-import \
|
||||
// RUN: -Werror=implicit-function-declaration -fsyntax-only \
|
||||
// RUN: -fimplicit-module-maps -verify %s
|
||||
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I%S/Inputs/diagnose-missing-import \
|
||||
// RUN: -Werror-implicit-function-declaration -fsyntax-only \
|
||||
// RUN: -fimplicit-module-maps -verify %s
|
||||
@import NCI;
|
||||
|
||||
void foo() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -verify -fsyntax-only -Werror
|
||||
// RUN: %clang_cc1 %s -verify -fsyntax-only -Werror=implicit-function-declaration
|
||||
|
||||
/// -Werror-implicit-function-declaration is a deprecated alias used by many projects.
|
||||
// RUN: %clang_cc1 %s -verify -fsyntax-only -Werror-implicit-function-declaration
|
||||
|
||||
typedef int int32_t;
|
||||
typedef unsigned char Boolean;
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// RUN: %clang_cc1 -fsyntax-only -DERR -verify %s
|
||||
// RUN: %clang_cc1 -fsyntax-only -verify %s -Wno-error=vec-elem-size
|
||||
// RUN: %clang_cc1 -fsyntax-only -DEXT -DERR -verify %s
|
||||
// RUN: %clang_cc1 -fsyntax-only -DEXT -verify %s -Wno-error=vec-elem-size
|
||||
|
||||
#ifdef EXT
|
||||
typedef __attribute__((__ext_vector_type__(8))) char vector_char8;
|
||||
|
|
Loading…
Reference in New Issue