/external/clang/test/SemaCXX/ |
c99.cpp | 2 void f1(int i[static 5]) { // expected-error{{C99}} 5 struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feature}} 7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}} 8 y: 25 }; // expected-warning{{designated initializers are a C99 feature}} \
|
c99-variable-length-array-cxx11.cpp | 21 int array1[N]; // expected-warning{{variable length arrays are a C99 feature}} 22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} 23 StillPOD array3[N]; // expected-warning{{variable length arrays are a C99 feature}} 24 StillPOD2 array4[N][3]; // expected-warning{{variable length arrays are a C99 feature}} 26 // expected-warning@-1{{variable length arrays are a C99 feature}}
|
/external/ltp/testcases/open_posix_testsuite/ |
CFLAGS | 1 -std=c99 -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 -W -Wall
|
/frameworks/compile/slang/tests/F_unknown_function/ |
stderr.txt.expect | 1 unknown_function.rs:6:5: error: implicit declaration of function 'bar' is invalid in C99
|
/external/clang/test/SemaOpenCL/ |
clang-builtin-version.cl | 7 enqueue_kernel(tmp, tmp, tmp, ^(void) { // expected-warning{{implicit declaration of function 'enqueue_kernel' is invalid in C99}} 10 unsigned size = get_kernel_work_group_size(^(void) { // expected-warning{{implicit declaration of function 'get_kernel_work_group_size' is invalid in C99}} 13 size = get_kernel_preferred_work_group_size_multiple(^(void) { // expected-warning{{implicit declaration of function 'get_kernel_preferred_work_group_size_multiple' is invalid in C99}} 21 read_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'read_pipe' is invalid in C99}} 22 write_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'write_pipe' is invalid in C99}} 24 reserve_read_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'reserve_read_pipe' is invalid in C99}} 25 reserve_write_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'reserve_write_pipe' is invalid in C99}} 27 work_group_reserve_read_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'work_group_reserve_read_pipe' is invalid in C99}} 28 work_group_reserve_write_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'work_group_reserve_write_pipe' is invalid in C99}} 30 sub_group_reserve_write_pipe(tmp, tmp); // expected-warning{{implicit declaration of function 'sub_group_reserve_write_pipe' is invalid in C99}} [all...] |
/external/clang/test/Preprocessor/ |
expr_comma.c | 4 // Comma is allowed if unevaluated in C99 5 // RUN: %clang_cc1 -E %s -std=c99 -pedantic-errors
|
macro_fn.c | 7 #define zero_dot(...) 0 /* expected-warning {{variadic macros are a C99 feature}} */ 8 #define one_dot(x, ...) 0 /* expected-warning {{variadic macros are a C99 feature}} expected-note 2{{macro 'one_dot' defined here}} */ 17 expected-warning {{empty macro arguments are a C99 feature}}*/ 23 two(a, ) /* expected-warning {{empty macro arguments are a C99 feature}} */ 26 , /* expected-warning {{empty macro arguments are a C99 feature}} */ 27 , /* expected-warning {{empty macro arguments are a C99 feature}} \ 29 ) /* expected-warning {{empty macro arguments are a C99 feature}} */ 30 two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */ 35 #define e(...) __VA_ARGS__ /* expected-warning {{variadic macros are a C99 feature}} */ 51 #define NSAssert(condition, desc, ...) /* expected-warning {{variadic macros are a C99 feature}} */ [all...] |
macro_fn_comma_swallow2.c | 4 // RUN: %clang_cc1 -E -std=c99 %s | FileCheck -check-prefix=C99 -strict-whitespace %s 5 // RUN: %clang_cc1 -E -std=c11 %s | FileCheck -check-prefix=C99 -strict-whitespace %s 10 // RUN: %clang_cc1 -E -std=c99 -DNAMED %s | FileCheck -check-prefix=C99 -strict-whitespace %s 20 // These are the GCC named argument versions of the C99-style variadic macros. 37 // empty __VA_ARGS__. This extension does not apply in -std=c99 mode, but 46 // Under C99 standard mode, the GCC ", ## __VA_ARGS__" extension *does not* 49 // C99: 1: [ ] [ , ] [ , ] [ ] [ ] 50 // C99: 2: [ a ] [ , a ] [ ,a ] [ a ] [ a [all...] |
/external/compiler-rt/test/BlocksRuntime/ |
c99.c | 8 // c99.m 10 // CONFIG C99 rdar://problem/6399225
|
/external/autotest/client/site_tests/hardware_PerfCallgraphVerification/src/ |
Makefile | 1 CFLAGS=-O2 -g -std=c99
|
/external/clang/test/Parser/ |
if-scope-c99.c | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c99 %s
|
struct-recursion.c | 3 // C99 6.7.2.3p11
|
/external/clang/test/Sema/ |
arg-scope-c99.c | 1 // RUN: %clang_cc1 -fsyntax-only -std=c99 -verify %s
|
implicit-def.c | 2 * RUN: not %clang_cc1 -fsyntax-only %s -std=c99 -pedantic-errors
|
warn-freestanding-complex.c | 3 void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding C99 implementation}}
|
/external/clang/test/CodeGen/ |
inline2.c | 2 // RUN: %clang_cc1 -O1 -std=c99 -triple i386-apple-darwin9 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-C99 %s 5 // CHECK-C99-LABEL: define i32 @f0() 10 // CHECK-C99-LABEL: define i32 @f1() 15 // CHECK-C99-LABEL: define i32 @f2() 20 // CHECK-C99-LABEL: define i32 @f3() 25 // CHECK-C99-LABEL: define i32 @f5() 30 // CHECK-C99-LABEL: define i32 @f6() 35 // CHECK-C99-LABEL: define i32 @f7() 46 // CHECK-C99-LABEL: define i32 @f4( [all...] |
/external/clang/test/PCH/ |
empty-with-headers.c | 1 // RUN: %clang_cc1 -fsyntax-only -std=c99 -pedantic-errors %s 2 // RUN: %clang_cc1 -fsyntax-only -std=c99 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fsyntax-only -std=c99 -pedantic-errors -include-pch %t %s 5 // RUN: %clang_cc1 -fsyntax-only -std=c99 -pedantic-errors -DINCLUDED %s -verify 6 // This last one should warn for -Wempty-translation-unit (C99 6.9p1).
|
/external/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/ |
LangStandards.def | 52 // C99-ish modes 53 LANGSTANDARD(c99, "c99", 55 LineComment | C99 | Digraphs | HexFloat) 58 LineComment | C99 | Digraphs | HexFloat) 61 LineComment | C99 | Digraphs | HexFloat) 64 LineComment | C99 | Digraphs | HexFloat) 68 LineComment | C99 | Digraphs | GNUMode | HexFloat) 71 LineComment | C99 | Digraphs | GNUMode | HexFloat) 76 LineComment | C99 | C11 | Digraphs | HexFloat [all...] |