Searched refs:statement (Results 1 - 25 of 100) sorted by relevance

1234

/haiku-buildtools/binutils/gas/testsuite/gas/m68k/
H A Dop68000.d6 .*statement `tstl %a0' ignored
7 .*statement `tstl %a0@\(8,%d0:w:2\)' ignored
8 .*statement `tstl %a0@\(8,%d0:w:4\)' ignored
9 .*statement `tstl %a0@\(8,%d0:w:8\)' ignored
10 .*statement `tstl %a0@\(8,%d0:l:2\)' ignored
11 .*statement `tstl %a0@\(8,%d0:l:4\)' ignored
12 .*statement `tstl %a0@\(8,%d0:l:8\)' ignored
13 .*statement `tstl %a0@\(%d0:w:2\)' ignored
14 .*statement `tstl \(8,%a0,%d0\*2\)' ignored
15 .*statement `tst
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/m68k/
H A Dop68000.d6 .*statement `tstl %a0' ignored
7 .*statement `tstl %a0@\(8,%d0:w:2\)' ignored
8 .*statement `tstl %a0@\(8,%d0:w:4\)' ignored
9 .*statement `tstl %a0@\(8,%d0:w:8\)' ignored
10 .*statement `tstl %a0@\(8,%d0:l:2\)' ignored
11 .*statement `tstl %a0@\(8,%d0:l:4\)' ignored
12 .*statement `tstl %a0@\(8,%d0:l:8\)' ignored
13 .*statement `tstl %a0@\(%d0:w:2\)' ignored
14 .*statement `tstl \(8,%a0,%d0\*2\)' ignored
15 .*statement `tst
[all...]
/haiku-buildtools/cloog/source/
H A Dstatement.c5 ** statement.c **
91 void cloog_statement_print_structure(file, statement, level)
93 CloogStatement * statement ;
97 if (statement != NULL)
101 fprintf(file,"+-- CloogStatement %d \n",statement->number) ;
103 statement = statement->next ;
105 while (statement != NULL)
115 fprintf(file,"| CloogStatement %d \n",statement->number) ;
116 statement
133 cloog_statement_print(FILE * file, CloogStatement * statement) argument
147 cloog_statement_free(CloogStatement * statement) argument
175 { CloogStatement * statement ; local
210 { CloogStatement * statement ; local
229 { CloogStatement * statement, * temp, * now = NULL ; local
[all...]
H A Dblock.c104 /* Print statement list. */
105 cloog_statement_print_structure(file,block->statement,level+1) ;
213 if (block->statement)
214 cloog_statement_free(block->statement);
260 block->statement = NULL ;
278 * - statement is the statement list of the block,
288 CloogBlock *cloog_block_alloc(CloogStatement *statement, int nb_scaldims, argument
293 block = cloog_block_malloc(statement->state);
295 block->statement
376 { CloogStatement * statement ; local
[all...]
/haiku-buildtools/cloog/osl/source/
H A Dstatement.c5 ** statement.c **
78 #include <osl/statement.h>
88 * this function displays an osl_statement_t structure (*statement) into
93 * \param[in] statement The statement whose information has to be printed.
96 void osl_statement_idump(FILE * file, osl_statement_p statement, int level) { argument
103 if (statement != NULL)
106 fprintf(file, "+-- NULL statement\n");
108 while (statement != NULL) {
123 // Print the domain of the statement
160 osl_statement_dump(FILE * file, osl_statement_p statement) argument
173 osl_statement_names(osl_statement_p statement) argument
199 osl_statement_pprint(FILE * file, osl_statement_p statement, osl_names_p names) argument
288 osl_statement_print(FILE * file, osl_statement_p statement) argument
397 osl_statement_p statement = osl_statement_pread(foo, registry, precision); local
417 osl_statement_p statement; local
436 osl_statement_free(osl_statement_p statement) argument
464 osl_statement_add(osl_statement_p * location, osl_statement_p statement) argument
480 osl_statement_number(osl_statement_p statement) argument
498 osl_statement_clone(osl_statement_p statement) argument
587 osl_statement_integrity_check(osl_statement_p statement, int expected_nb_parameters) argument
649 osl_statement_get_nb_iterators(osl_statement_p statement) argument
679 osl_statement_get_attributes(osl_statement_p statement, int * nb_parameters, int * nb_iterators, int * nb_scattdims, int * nb_localdims, int * array_id) argument
[all...]
H A Dscop.c76 #include <osl/statement.h>
149 osl_statement_idump(file, scop->statement, level+1);
274 fprintf(file, "%d\n\n",osl_statement_number(scop->statement));
276 osl_statement_pprint(file, scop->statement, names);
384 // Read each statement.
386 if (scop->statement == NULL)
387 scop->statement = stmt;
456 scop->statement = NULL;
479 osl_statement_free(scop->statement);
529 node->statement
763 osl_statement_p statement; local
[all...]
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Ddataflow.h22 // The statement where the variable is defined.
23 Statement* statement; member in struct:Dataflow::Def
33 // The statement where the variable is referenced.
34 Statement* statement; member in struct:Dataflow::Ref
52 add_def(Named_object* var, Expression* val, Statement* statement,
56 // STATEMENT is the statement which refers to it.
58 add_ref(Named_object* var, Statement* statement);
H A Ddataflow.cc20 Dataflow_traverse_expressions(Dataflow* dataflow, Statement* statement) argument
22 dataflow_(dataflow), statement_(statement)
69 // This class is used to handle an assignment statement.
74 Dataflow_traverse_assignment(Dataflow* dataflow, Statement* statement) argument
75 : dataflow_(dataflow), statement_(statement)
110 // Handle an assignment in a statement.
131 // Handle a value in a statement.
158 statement(Block*, size_t* pindex, Statement*);
168 Dataflow_traverse_statements::statement(Block* block, size_t* pindex, argument
169 Statement *statement)
226 add_def(Named_object* var, Expression* val, Statement* statement, bool is_init) argument
244 add_ref(Named_object* var, Statement* statement) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/syntax/
H A Dtopexpr.go9 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
14 x++ // ERROR "non-declaration statement outside function body|expected declaration"
19 x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/goacc/
H A Dloop-3.f9527 ! OpenACC supports Fortran 2008 do concurrent statement
36 if (i .ne. j) exit outer_loop ! { dg-error "EXIT statement" }
43 if (i .eq. j) cycle outer_loop1 ! { dg-error "CYCLE statement" }
50 if (i .eq. j) cycle outer_loop2 ! { dg-error "CYCLE statement" }
51 if (i .ne. j) exit outer_loop2 ! { dg-error "EXIT statement" }
/haiku-buildtools/cloog/include/cloog/
H A Dblock.h48 * this structure contains the informations of a statement block. It may happen
53 * contains the statement list and the common informations of the statements.
63 CloogStatement * statement ; /**< The list of statements in the block. */ member in struct:cloogblock
106 CloogBlock * cloog_block_alloc(CloogStatement *statement, int nb_scaldims,
H A Dcloog.h53 #include <cloog/statement.h>
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug157.go21 // (semicolons are not needed at the end of a statement list)
31 bug157.go:20: first switch statement must be a case
H A Dbug274.go8 // Each statement in the list of statements for each case clause must be
23 L0: // ERROR "statement"
25 L1: // ERROR "statement"
H A Dbug128.go21 bug127.go:5: switch statement must have case labels
22 bug127.go:9: switch statement must have case labels
H A Dbug000.go19 bug0.go:8: case statement out of place
H A Dbug086.go13 // we should not be able to return successfully w/o a return statement
H A Dbug136.go10 L: ; // ';' terminates empty statement => L does not apply to for loop
H A Dbug277.go65 bug277.go:53: non-declaration statement outside function body
66 bug277.go:54: non-declaration statement outside function body
69 bug277.go:57: non-declaration statement outside function body
70 bug277.go:58: non-declaration statement outside function body
H A Dbug298.go10 for i := range []int{} { return i } // ERROR "statement outside function|expected"
H A Dbug394.go10 return nil // ERROR "non-declaration statement outside function body|expected declaration"
/haiku-buildtools/legacy/binutils/ld/
H A Dldwrite.c39 build_link_order (lang_statement_union_type *statement) argument
41 switch (statement->header.type)
50 output_section = statement->data_statement.output_section;
58 link_order->offset = statement->data_statement.output_offset;
61 value = statement->data_statement.value;
107 switch (statement->data_statement.type)
135 switch (statement->data_statement.type)
145 if (statement->data_statement.type == QUAD)
184 rs = &statement->reloc_statement;
224 asection *i = statement
[all...]
/haiku-buildtools/gcc/gcc/fortran/
H A Dio.c220 statement. */
543 /* Check a format statement. The format string, either from a FORMAT
544 statement or a constant in an I/O statement has already been parsed
1184 /************ Fortran I/O statement matchers *************/
1186 /* Match a FORMAT statement. This amounts to actually parsing the
1199 gfc_error ("Format statement in module main block at %C");
1203 /* Before parsing the rest of a FORMAT statement, check F2008:c1206. */
1208 gfc_error ("FORMAT statement at %C cannot appear within an INTERFACE");
1233 /* The label doesn't get created until after the statement i
1736 compare_to_allowed_values(const char *specifier, const char *allowed[], const char *allowed_f2003[], const char *allowed_gnu[], gfc_char_t *value, const char *statement, bool warn) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/bug404.dir/
H A Dtwo.go5 // The gccgo compiler would fail on the import statement.
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
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"

Completed in 211 milliseconds

1234