Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
662f9ccd
Commit
662f9ccd
authored
Nov 17, 2011
by
Matthias Braun
Browse files
update documentation
parent
3425dde7
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/libfirm/typerep.h
View file @
662f9ccd
...
...
@@ -1583,16 +1583,14 @@ FIRM_API size_t get_method_n_params(const ir_type *method);
/** Returns the type of the parameter at position pos of a method. */
FIRM_API
ir_type
*
get_method_param_type
(
const
ir_type
*
method
,
size_t
pos
);
/** Sets the type of the parameter at position pos of a method.
Also
change
s
the
type in the pass-by-value repres
ent
a
ti
on by just
changing the type of the corresponding entity if the representation is constructed.
*/
* Note: does not
change the
corresponding parameter
ent
i
ti
es (if there are any)
*/
FIRM_API
void
set_method_param_type
(
ir_type
*
method
,
size_t
pos
,
ir_type
*
tp
);
/** Returns the number of results of a method type. */
FIRM_API
size_t
get_method_n_ress
(
const
ir_type
*
method
);
/** Returns the return type of a method type at position pos. */
FIRM_API
ir_type
*
get_method_res_type
(
const
ir_type
*
method
,
size_t
pos
);
/** Sets the type of the result at position pos of a method.
Also changes the type in the pass-by-value representation by just
changing the type of the corresponding entity if the representation is constructed. */
/** Sets the type of the result at position pos of a method. */
FIRM_API
void
set_method_res_type
(
ir_type
*
method
,
size_t
pos
,
ir_type
*
tp
);
/**
...
...
@@ -1906,7 +1904,7 @@ FIRM_API int is_Enumeration_type(const ir_type *enumeration);
* @page pointer_type Representation of a pointer type
*
* Pointer types:
* - points_to: The type
of the entity
this pointer points to.
* - points_to: The type this pointer points to.
*/
/** Creates a new type pointer. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment