Searched refs:ERROR (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dnilcheck.go43 _ = *intp // ERROR "nil check"
44 _ = *arrayp // ERROR "nil check"
45 _ = *array0p // ERROR "nil check"
46 _ = *array0p // ERROR "nil check"
47 _ = *intp // ERROR "nil check"
48 _ = *arrayp // ERROR "nil check"
49 _ = *structp // ERROR "nil check"
50 _ = *emptyp // ERROR "nil check"
51 _ = *arrayp // ERROR "nil check"
66 _ = *intp // ERROR "ni
[all...]
H A Dshift1.go20 u = 1.0 << s // ERROR "invalid operation|shift of non-integer operand"
21 v float32 = 1 << s // ERROR "invalid" "as type float32"
26 e1 = g(2.0 << s) // ERROR "invalid|shift of non-integer operand" "as type interface"
27 f1 = h(2 << s) // ERROR "invalid" "as type float64"
28 g1 int64 = 1.1 << s // ERROR "truncated"
35 a2 int = 1.0 << c // ERROR "overflow"
36 b2 = 1.0 << c // ERROR "overflow"
37 d2 = f(1.0 << c) // ERROR "overflow"
42 a3 = 1.0<<s + 0 // ERROR "invalid|shift of non-integer operand"
44 b3 = 1<<s + 1 + 1.0 // ERROR "invali
[all...]
H A Dimport5.go24 import 42 // ERROR "import statement"
25 import 'a' // ERROR "import statement"
26 import 3.14 // ERROR "import statement"
27 import 0.25i // ERROR "import statement"
34 import "" // ERROR "import path"
35 import `` // ERROR "import path"
36 import "\x00" // ERROR "import path"
37 import `\x00` // ERROR "import path"
38 import "\x7f" // ERROR "import path"
39 import `\x7f` // ERROR "impor
[all...]
H A Dconst1.go33 a1 = Int8 * 100 // ERROR "overflow"
35 a3 = Int8 * 1000 // ERROR "overflow"
36 a4 = Int8 * int8(1000) // ERROR "overflow"
37 a5 = int8(Int8 * 1000) // ERROR "overflow"
38 a6 = int8(Int8 * int8(1000)) // ERROR "overflow"
39 a7 = Int8 - 2*Int8 - 2*Int8 // ERROR "overflow"
40 a8 = Int8 * Const / 100 // ERROR "overflow"
43 b1 = Uint8 * Uint8 // ERROR "overflow"
44 b2 = Uint8 * -1 // ERROR "overflow"
46 b4 = Uint8 - Uint8 - Uint8 // ERROR "overflo
[all...]
H A Dslice3err.go20 _ = array[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
21 _ = array[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
22 _ = array[:j:] // ERROR "final index required in 3-index slice"
23 _ = array[i:j:] // ERROR "final index required in 3-index slice"
24 _ = array[::k] // ERROR "middle index required in 3-index slice"
25 _ = array[i::k] // ERROR "middle index required in 3-index slice"
33 _ = slice[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
34 _ = slice[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
35 _ = slice[:j:] // ERROR "final index required in 3-index slice"
36 _ = slice[i:j:] // ERROR "fina
[all...]
H A Descape2.go19 func foo1(x int) { // ERROR "moved to heap: x"
20 gxx = &x // ERROR "&x escapes to heap"
23 func foo2(yy *int) { // ERROR "leaking param: yy"
27 func foo3(x int) *int { // ERROR "moved to heap: x"
28 return &x // ERROR "&x escapes to heap"
33 func foo3b(t T) { // ERROR "leaking param: t"
38 func foo4(xx, yy *int) { // ERROR "xx does not escape" "yy does not escape"
43 func foo5(xx **int, yy *int) { // ERROR "xx does not escape" "yy does not escape"
44 xx = &yy // ERROR "&yy does not escape"
47 func foo6(xx **int, yy *int) { // ERROR "x
[all...]
H A Dnilptr3.go43 _ = *intp // ERROR "generated nil check"
48 _ = *arrayp // ERROR "generated nil check"
51 _ = *array0p // ERROR "generated nil check"
52 _ = *array0p // ERROR "removed repeated nil check" 386
54 _ = *intp // ERROR "removed repeated nil check"
55 _ = *arrayp // ERROR "removed repeated nil check"
56 _ = *structp // ERROR "generated nil check"
57 _ = *emptyp // ERROR "generated nil check"
58 _ = *arrayp // ERROR "removed repeated nil check"
73 _ = *intp // ERROR "generate
[all...]
H A Dfuncdup.go10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 type T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
21 func (i *R) F1(i int) {} // ERROR "duplicate argument i|redefinition|previous"
22 func (i *R) F2() (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous"
23 func (i *R) F3(j int) (j int) {return 0} // ERROR "duplicate argument j|redefinition|previous"
25 func F1(i, i int) {} // ERROR "duplicat
[all...]
H A Dfuncdup2.go10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 var T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 var T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 var T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
/haiku-buildtools/gcc/mpfr/tests/
H A Dtcheck.c28 #define ERROR(s) \ macro
45 if (!mpfr_check(a)) ERROR("for init");
48 if (!mpfr_check(a)) ERROR("for nan");
51 if (!mpfr_check(a)) ERROR("for inf");
53 if (!mpfr_check(a)) ERROR("for zero");
56 if (!mpfr_check(a)) ERROR("for set_ui");
62 if (!mpfr_check(a)) ERROR("for mul");
65 if (max==0) ERROR("can't reach overflow");
69 if (mpfr_check(a)) ERROR("sgn");
73 if (mpfr_check(a)) ERROR("precmi
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dissue4463.go20 append(a, 0) // ERROR "not used"
21 cap(a) // ERROR "not used"
22 complex(1, 2) // ERROR "not used"
23 imag(1i) // ERROR "not used"
24 len(a) // ERROR "not used"
25 make([]int, 10) // ERROR "not used"
26 new(int) // ERROR "not used"
27 real(1i) // ERROR "not used"
28 unsafe.Alignof(a) // ERROR "not used"
29 unsafe.Offsetof(s.f) // ERROR "no
[all...]
H A Dissue4654.go15 defer int(0) // ERROR "defer requires function call, not conversion|is not used"
16 go string([]byte("abc")) // ERROR "go requires function call, not conversion|is not used"
23 defer append(x, 1) // ERROR "defer discards result of append|is not used"
24 defer cap(x) // ERROR "defer discards result of cap|is not used"
25 defer complex(1, 2) // ERROR "defer discards result of complex|is not used"
26 defer complex(f, 1) // ERROR "defer discards result of complex|is not used"
27 defer imag(1i) // ERROR "defer discards result of imag|is not used"
28 defer imag(c) // ERROR "defer discards result of imag|is not used"
29 defer len(x) // ERROR "defer discards result of len|is not used"
30 defer make([]int, 1) // ERROR "defe
[all...]
H A Dissue4232.go11 _ = a[-1] // ERROR "invalid array index -1|index out of bounds"
12 _ = a[-1:] // ERROR "invalid slice index -1|index out of bounds"
13 _ = a[:-1] // ERROR "invalid slice index -1|index out of bounds"
14 _ = a[10] // ERROR "invalid array index 10|index out of bounds"
17 _ = s[-1] // ERROR "invalid slice index -1|index out of bounds"
18 _ = s[-1:] // ERROR "invalid slice index -1|index out of bounds"
19 _ = s[:-1] // ERROR "invalid slice index -1|index out of bounds"
23 _ = c[-1] // ERROR "invalid string index -1|index out of bounds"
24 _ = c[-1:] // ERROR "invalid slice index -1|index out of bounds"
25 _ = c[:-1] // ERROR "invali
[all...]
H A Dbug228.go11 func g(x int, y float32) (...) // ERROR "[.][.][.]" "final argument"
13 func h(x, y ...int) // ERROR "[.][.][.]"
15 func i(x int, y ...int, z float32) // ERROR "[.][.][.]"
17 var x ...int; // ERROR "[.][.][.]|syntax|type"
19 type T ...int; // ERROR "[.][.][.]|syntax|type"
H A Dissue4085a.go12 _ = make(T, -1) // ERROR "negative"
13 _ = make(T, 0.5) // ERROR "constant 0.5 truncated to integer|non-integer len argument"
15 _ = make(T, 1<<63) // ERROR "len argument too large"
16 _ = make(T, 0, -1) // ERROR "negative cap"
17 _ = make(T, 10, 0) // ERROR "len larger than cap"
H A Dissue4813.go31 a3 = A[f2] // ERROR "truncated|must be integer"
33 a5 = A[c2] // ERROR "truncated|must be integer"
34 a6 = A[vf] // ERROR "non-integer|must be integer"
35 a7 = A[vc] // ERROR "non-integer|must be integer"
39 s3 = S[f2] // ERROR "truncated|must be integer"
41 s5 = S[c2] // ERROR "truncated|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
43 s7 = S[vc] // ERROR "non-integer|must be integer"
47 t3 = T[f2] // ERROR "truncated|must be integer"
49 t5 = T[c2] // ERROR "truncate
[all...]
H A Dbug300.go23 _ = (struct{}){} // ERROR "parenthesize"
24 _ = ([42]int){} // ERROR "parenthesize"
25 _ = ([...]int){} // ERROR "parenthesize"
26 _ = ([]int){} // ERROR "parenthesize"
27 _ = (map[int]int){} // ERROR "parenthesize"
28 _ = (T){} // ERROR "parenthesize"
/haiku-buildtools/legacy/binutils/bfd/
H A Dcpu-i960.c133 #define ERROR 0 macro
146 { ERROR, CORE, KA, KB, MC, XA, CA, JX, HX },
148 { KA, KA, KA, KB, MC, XA, ERROR, ERROR, ERROR},
149 { KB, KB, KB, KB, MC, XA, ERROR, ERROR, ERROR},
150 { MC, MC, MC, MC, MC, XA, ERROR, ERROR, ERRO
[all...]
/haiku-buildtools/binutils/bfd/
H A Dcpu-i960.c126 #define ERROR 0 macro
139 { ERROR, CORE, KA, KB, MC, XA, CA, JX, HX },
141 { KA, KA, KA, KB, MC, XA, ERROR, ERROR, ERROR},
142 { KB, KB, KB, KB, MC, XA, ERROR, ERROR, ERROR},
143 { MC, MC, MC, MC, MC, XA, ERROR, ERROR, ERRO
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/bug460.dir/
H A Db.go12 x.int = 20 // ERROR "unexported field"
13 x.int8 = 20 // ERROR "unexported field"
14 x.error = nil // ERROR "unexported field"
15 x.rune = 'a' // ERROR "unexported field"
16 x.byte = 20 // ERROR "unexported field"
/haiku-buildtools/binutils/gas/testsuite/gas/mips/
H A Dase-errors-2.s6 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
7 .set mips64 # ERROR: too low
10 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
12 lbux $4,$5($6) # ERROR: dsp not enabled
13 ldx $4,$5($6) # ERROR: dsp not enabled
14 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
21 .set mips64 # ERROR: too low
26 lbux $4,$5($6) # ERROR: dsp not enabled
27 ldx $4,$5($6) # ERROR: dsp not enabled
28 absq_s.qb $3,$4 # ERROR
[all...]
H A Dase-errors-1.s6 ldx $4,$5($6) # ERROR: 64-bit only
7 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
9 .set mips32 # ERROR: too low
11 ldx $4,$5($6) # ERROR: 64-bit only
12 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
14 lbux $4,$5($6) # ERROR: dsp not enabled
15 ldx $4,$5($6) # ERROR: dsp not enabled
16 absq_s.qb $3,$4 # ERROR: dspr2 not enabled
22 ldx $4,$5($6) # ERROR: 64-bit only
25 .set mips32 # ERROR
[all...]
/haiku-buildtools/legacy/gcc/gcc/
H A Dmbchar.c53 COPYA, COPYJ, COPYJ2, MAKE_A, MAKE_J, NOOP, EMPTY, ERROR enumerator in enum:__anon3432
82 /*JIS */ {NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, ERROR, NOOP, ERROR },
83 /*JIS_1 */ {ERROR, NOOP, NOOP, NOOP, NOOP, NOOP, ERROR, NOOP, ERROR },
84 /*JIS_2 */ {NOOP, COPYJ2,COPYJ2,COPYJ2, COPYJ2, COPYJ2,ERROR, COPYJ2,COPYJ2},
85 /*J_ESC */ {ERROR, ERROR, NOOP, ERROR, ERRO
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Derror11.C4 ERROR; /* { dg-error "ERROR" } */ member in struct:A
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/gomp/appendix-a/
H A Da.12.1.f906 REAL ERROR, Y, AVERAGE local in subroutine:A12
19 !$OMP DO PRIVATE(I,Y,ERROR), REDUCTION(+:TOOBIG)
23 ERROR = Y-X(I)
24 IF( ERROR > TOL .OR. ERROR < -TOL ) TOOBIG = TOOBIG+1

Completed in 263 milliseconds

1234567891011>>