Home
last modified time | relevance | path

Searched refs:destination_type (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/brig/brigfrontend/
H A Dbrig-to-generic.cc609 build_resize_convert_view (tree destination_type, tree source) in build_resize_convert_view() argument
612 gcc_assert (source && destination_type && TREE_TYPE (source) != NULL_TREE in build_resize_convert_view()
613 && destination_type != NULL_TREE); in build_resize_convert_view()
622 if (destination_type == source_type) in build_resize_convert_view()
626 size_t dst_size = int_size_in_bytes (destination_type); in build_resize_convert_view()
628 return build1 (VIEW_CONVERT_EXPR, destination_type, source); in build_resize_convert_view()
636 tree resized = convert (get_scalar_unsigned_int_type (destination_type), in build_resize_convert_view()
639 return build_resize_convert_view (destination_type, resized); in build_resize_convert_view()
H A Dbrig-to-generic.h226 tree build_resize_convert_view (tree destination_type, tree source);