HomeSort by relevance Sort by last modified time
    Searched full:warning (Results 276 - 300 of 21668) sorted by null

<<11121314151617181920>>

  /external/clang/test/Preprocessor/
macro-reserved.c 3 #define for 0 // expected-warning {{keyword is hidden by macro definition}}
35 #define inline inline__ // expected-warning {{keyword is hidden by macro definition}}
37 #define extern __inline // expected-warning {{keyword is hidden by macro definition}}
39 #define extern __extern // expected-warning {{keyword is hidden by macro definition}}
41 #define extern __extern__ // expected-warning {{keyword is hidden by macro definition}}
44 #define inline _inline // expected-warning {{keyword is hidden by macro definition}}
46 #define volatile // expected-warning {{keyword is hidden by macro definition}}
49 #pragma clang diagnostic warning "-Wreserved-id-macro"
51 #define switch if // expected-warning {{keyword is hidden by macro definition}}
53 #define __clusplus // expected-warning {{macro name is a reserved identifier}
    [all...]
  /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...]
  /hardware/qcom/msm8996/kernel-headers/media/
msmb_isp.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
msm_camera.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /external/clang/test/Analysis/
pr22954.c 28 clang_analyzer_eval(a0.s1[0] == 'a'); // expected-warning{{UNKNOWN}}
29 clang_analyzer_eval(a0.s1[1] == 'b'); // expected-warning{{UNKNOWN}}
30 clang_analyzer_eval(a0.s1[2] == 'c'); // expected-warning{{UNKNOWN}}
31 clang_analyzer_eval(a0.s1[3] == 'd'); // expected-warning{{UNKNOWN}}
32 clang_analyzer_eval(a0.s2 == 0); // expected-warning{{UNKNOWN}}
33 free(a0.s2); // no warning
42 clang_analyzer_eval(a1.s1[0] == 'a'); // expected-warning{{UNKNOWN}}
43 clang_analyzer_eval(a1.s1[1] == 'b'); // expected-warning{{UNKNOWN}}
44 clang_analyzer_eval(a1.s1[2] == 'c'); // expected-warning{{UNKNOWN}}
45 clang_analyzer_eval(a1.s1[3] == 'd'); // expected-warning{{UNKNOWN}
    [all...]
stack-addr-ps.c 5 return &x; // expected-warning{{Address of stack memory associated with local variable 'x' returned}} expected-warning{{address of stack memory associated with local variable 'x' returned}}
9 return &y; // expected-warning{{Address of stack memory associated with local variable 'y' returned}} expected-warning{{address of stack memory associated with local variable 'y' returned}}
18 return y; // expected-warning{{Address of stack memory associated with local variable 'w' returned to caller}}
23 return &(unsigned short){((unsigned short)0x22EF)}; // expected-warning{{Address of stack memory}}
29 return &((struct s){ 2, 0.4, 5 * 8 }); // expected-warning{{Address of stack memory}}
33 return p; // expected-warning{{Address of stack memory}}
38 return p; // expected-warning{{Address of stack memory}}
42 return x[0]; // no-warning
    [all...]
array-struct-region.cpp 42 clang_analyzer_eval(s.field == 42); // expected-warning{{TRUE}}
45 clang_analyzer_eval(s.field == 0); // expected-warning{{TRUE}}
48 clang_analyzer_eval(s.getThis() == &s); // expected-warning{{TRUE}}
49 clang_analyzer_eval(+s == &s); // expected-warning{{TRUE}}
50 clang_analyzer_eval(-s == &s); // expected-warning{{TRUE}}
52 clang_analyzer_eval(s.check()); // expected-warning{{TRUE}}
53 clang_analyzer_eval(!s); // expected-warning{{FALSE}}
54 clang_analyzer_eval(~s); // expected-warning{{FALSE}}
56 clang_analyzer_eval(*s == 0); // expected-warning{{TRUE}}
65 clang_analyzer_eval(x == 42); // expected-warning{{TRUE}
    [all...]
retain-release-cf-audited.m 18 CFTypeRef obj = CFCreateSomethingAudited(); // no-warning
19 CFRelease(obj); // no-warning
21 CFTypeRef obj2 = CFCreateSomethingAudited(); // expected-warning{{leak}}
22 CFRetain(obj2); // no-warning
23 CFRelease(obj2); // no-warning
27 CFTypeRef obj = CFCreateSomethingUnaudited(); // no-warning
28 CFRelease(obj); // no-warning
30 CFTypeRef obj2 = CFCreateSomethingUnaudited(); // expected-warning{{leak}}
31 CFRetain(obj2); // no-warning
32 CFRelease(obj2); // no-warning
    [all...]
security-syntax-checks-no-emit.c 24 rand(); // no-warning
25 drand48(); // no-warning
26 erand48(a); // no-warning
27 jrand48(a); // no-warning
28 lcong48(a); // no-warning
29 lrand48(); // no-warning
30 mrand48(); // no-warning
31 nrand48(a); // no-warning
32 rand_r(&b); // no-warning
33 random(); // no-warning
    [all...]
  /external/clang/test/Sema/
format-strings-freebsd.c 11 freebsd_kernel_printf("reg=%b\n", i, "\10\2BITTWO\1BITONE\n"); // no-warning
12 freebsd_kernel_printf("reg=%b\n", l, "\10\2BITTWO\1BITONE\n"); // expected-warning{{format specifies type 'int' but the argument has type 'long'}}
13 freebsd_kernel_printf("reg=%b\n", i, l); // expected-warning{{format specifies type 'char *' but the argument has type 'long'}}
14 freebsd_kernel_printf("reg=%b\n", i); // expected-warning{{more '%' conversions than data arguments}}
15 freebsd_kernel_printf("reg=%b\n", i, "\10\2BITTWO\1BITONE\n", l); // expected-warning{{data argument not used by format string}}
18 freebsd_kernel_printf("%6D", s, ":"); // no-warning
19 freebsd_kernel_printf("%6D", i, ":"); // expected-warning{{format specifies type 'void *' but the argument has type 'int'}}
20 freebsd_kernel_printf("%6D", s, i); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
21 freebsd_kernel_printf("%6D", s); // expected-warning{{more '%' conversions than data arguments}}
22 freebsd_kernel_printf("%6D", s, ":", i); // expected-warning{{data argument not used by format string}
    [all...]
uninit-variables.c 7 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
8 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
13 return x; // no-warning
19 return x; // no-warning
23 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}}
29 int x, y; // expected-note{{initialize the variable 'y' to silence this warning}}
30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}}
35 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}
    [all...]
shift.c 21 c = 1 << -1; // expected-warning {{shift count is negative}}
22 c = 1 >> -1; // expected-warning {{shift count is negative}}
28 c <<= -1; // expected-warning {{shift count is negative}}
29 c >>= -1; // expected-warning {{shift count is negative}}
30 c <<= 999999; // expected-warning {{shift count >= width of type}}
31 c >>= 999999; // expected-warning {{shift count >= width of type}}
32 c <<= CHAR_BIT; // expected-warning {{shift count >= width of type}}
33 c >>= CHAR_BIT; // expected-warning {{shift count >= width of type}}
34 c <<= CHAR_BIT+1; // expected-warning {{shift count >= width of type}}
35 c >>= CHAR_BIT+1; // expected-warning {{shift count >= width of type}
    [all...]
empty2.c 3 struct emp_1 { // expected-warning {{empty struct is a GNU extension}}
6 union emp_2 { // expected-warning {{empty union is a GNU extension}}
9 struct emp_3 { // expected-warning {{struct without named members is a GNU extension}}
13 union emp_4 { // expected-warning {{union without named members is a GNU extension}}
17 struct emp_5 { // expected-warning {{struct without named members is a GNU extension}}
22 union emp_6 { // expected-warning {{union without named members is a GNU extension}}
27 struct nonamed_1 { // expected-warning {{struct without named members is a GNU extension}}
31 union nonamed_2 { // expected-warning {{union without named members is a GNU extension}}
35 struct nonamed_3 { // expected-warning {{struct without named members is a GNU extension}}
40 union nonamed_4 { // expected-warning {{union without named members is a GNU extension}
    [all...]
nonnull.c 18 Class_init(0, "Hello World"); // expected-warning {{null passed to a callee that requires a non-null argument}}
23 void bar(int i) __attribute__((nonnull(1))); // expected-warning {{'nonnull' attribute only applies to pointer arguments}} expected-warning {{'nonnull' attribute applied to function with no pointer arguments}}
26 void baz2(__attribute__((nonnull(1))) const char *str); // expected-warning {{'nonnull' attribute when used on parameters takes no arguments}}
27 void baz3(__attribute__((nonnull)) int x); // expected-warning {{'nonnull' attribute only applies to pointer arguments}}
30 baz(0); // expected-warning {{null passed to a callee that requires a non-null argument}}
31 baz2(0); // no-warning
32 baz3(0); // no-warning
35 void test_void_returns_nonnull(void) __attribute__((returns_nonnull)); // expected-warning {{'returns_nonnull' attribute only applies to return values that are pointers}}
36 int test_int_returns_nonnull(void) __attribute__((returns_nonnull)); // expected-warning {{'returns_nonnull' attribute only applies to return values that are pointers}
    [all...]
unused-expr.c 10 VP < P; // expected-warning {{relational comparison result unused}}
12 (void)foo(1,2); // no warning.
14 A < foo(1, 2); // expected-warning {{relational comparison result unused}}
16 foo(1,2)+foo(4,3); // expected-warning {{expression result unused}}
19 *P; // expected-warning {{expression result unused}}
20 *VP; // no warning.
21 P[4]; // expected-warning {{expression result unused}}
22 VP[4]; // no warning.
24 __real__ C; // expected-warning {{expression result unused}}
28 sqrt(A); // expected-warning {{ignoring return value of function declared with const attribute}
    [all...]
  /hardware/qcom/msm8x26/kernel-headers/linux/
msm_audio_calibration.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
msm_mdp.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /hardware/qcom/msm8998/kernel-headers/media/
msm_camera.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /external/clang/test/Parser/
cxx11-stmt-attributes.cpp 5 [[unknown_attribute]] ; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
6 [[unknown_attribute]] { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
7 [[unknown_attribute]] if (0) { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
8 [[unknown_attribute]] for (;;); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
9 [[unknown_attribute]] do { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
10 [[unknown_attribute]] continue; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
12 [[unknown_attribute]] while (0); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
14 [[unknown_attribute]] switch (i) { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
15 [[unknown_attribute]] case 0: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
16 [[unknown_attribute]] default: // expected-warning {{unknown attribute 'unknown_attribute' ignored}
    [all...]
cxx0x-in-cxx98.cpp 3 inline namespace N { // expected-warning{{inline namespaces are a C++11 feature}}
5 template<typename ...Args> // expected-warning{{variadic templates are a C++11 extension}}
6 void f(Args &&...) &; // expected-warning{{rvalue references are a C++11 extension}} \
7 // expected-warning{{reference qualifiers on functions are a C++11 extension}}
15 struct D final : B { // expected-warning {{'final' keyword is a C++11 extension}}
16 virtual void f() override; // expected-warning {{'override' keyword is a C++11 extension}}
17 virtual void g() final; // expected-warning {{'final' keyword is a C++11 extension}}
21 // A warning on this would be sufficient once we can handle it correctly.
28 auto Auto::n = 0; // expected-warning {{'auto' type specifier is a C++11 extension}}
30 // expected-warning@-1 {{'auto' type specifier is a C++11 extension}
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/media/
msmb_ispif.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /external/clang/test/SemaCXX/
warn-unreachable.cpp 35 dead(); // expected-warning {{will never be executed}}
41 --; // expected-warning {{will never be executed}}
44 halt() // expected-warning {{will never be executed}}
49 (halt()); // expected-warning {{will never be executed}}
57 halt(), foor()// expected-warning {{will never be executed}}
67 .mem; // expected-warning {{will never be executed}}
77 (halt()); // expected-warning {{will never be executed}}
86 isUnreachable(); // no-warning
107 dead(); // expected-warning {{will never be executed}}
129 return PR19040_TEST_FAILURE; // expected-warning {{will never be executed}
    [all...]
unreachable-code.cpp 8 ++i) { // expected-warning {{loop will run at most once (loop increment never executed)}}
14 return 1; // expected-warning {{will never be executed}}
20 ++i) { // expected-warning {{loop will run at most once (loop increment never executed)}}
26 return bar(); // expected-warning {{will never be executed}}
33 bar(); // expected-warning {{will never be executed}}
39 bar(); // expected-warning {{will never be executed}}
42 bar(); // expected-warning {{will never be executed}}
47 bar(); // expected-warning {{will never be executed}}
51 bar(); // expected-warning {{will never be executed}}
68 throw PR6130(); // no-warning
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_mdp.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /external/llvm/test/MC/Disassembler/Mips/mips1/
invalid.txt 6 0x00 0x11 0x00 0x0f # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
7 0x00 0x30 0xc0 0x42 # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
8 0x00 0xab 0x09 0x4a # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
9 0x02 0x80 0x44 0xf0 # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
10 0x02 0xc5 0x40 0x01 # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
11 0x03 0x21 0x22 0xd5 # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
12 0x03 0xa0 0x08 0x13 # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
13 0x04 0x1c 0x63 0xee # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
14 0x40 0x3c 0x00 0x5d # CHECK: :[[@LINE]]:1: warning: invalid instruction encoding
15 0x42 0x02 0x00 0x27 # CHECK: :[[@LINE]]:1: warning: invalid instruction encodin
    [all...]

Completed in 276 milliseconds

<<11121314151617181920>>