Displaying 6 results from an estimated 6 matches for "printlist".
2019 Jun 10
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
...ct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
new_node->prev = NULL;
if ((*head_ref) != NULL)
(*head_ref)->prev = new_node;
(*head_ref) = new_node;
}
// This function prints contents of linked list starting from the given node
void printList(struct Node* node)
{
struct Node* last;
printf("\nTraversal in forward direction \n");
while (node != NULL) {
printf(" %d ", node->data);
last = node;
node = node->next;
}
printf("\nTraversal in reverse direction \n");...
2019 Jun 11
3
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
...t;
>> (*head_ref)->prev = new_node;
>>
>>
>>
>> (*head_ref) = new_node;
>>
>> }
>>
>>
>>
>>
>>
>> // This function prints contents of linked list starting from the given
>> node
>>
>> void printList(struct Node* node)
>>
>> {
>>
>> struct Node* last;
>>
>> printf("\nTraversal in forward direction \n");
>>
>> while (node != NULL) {
>>
>> printf(" %d ", node->data);
>>
>> la...
2019 Jun 20
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
...ct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
new_node->prev = NULL;
if ((*head_ref) != NULL)
(*head_ref)->prev = new_node;
(*head_ref) = new_node;
}
// This function prints contents of linked list starting from the given node
void printList(struct Node* node)
{
struct Node* last;
printf("\nTraversal in forward direction \n");
while (node != NULL) {
printf(" %d ", node->data);
last = node;
node = node->next;
}
printf("\nTraversal in reverse direction \n");...
2019 Jun 21
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
...ct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
new_node->prev = NULL;
if ((*head_ref) != NULL)
(*head_ref)->prev = new_node;
(*head_ref) = new_node;
}
// This function prints contents of linked list starting from the given node
void printList(struct Node* node)
{
struct Node* last;
printf("\nTraversal in forward direction \n");
while (node != NULL) {
printf(" %d ", node->data);
last = node;
node = node->next;
}
printf("\nTraversal in reverse direction \n");...
2019 Jun 24
4
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
...t;
>> (*head_ref)->prev = new_node;
>>
>>
>>
>> (*head_ref) = new_node;
>>
>> }
>>
>>
>>
>>
>>
>> // This function prints contents of linked list starting from the given
>> node
>>
>> void printList(struct Node* node)
>>
>> {
>>
>> struct Node* last;
>>
>> printf("\nTraversal in forward direction \n");
>>
>> while (node != NULL) {
>>
>> printf(" %d ", node->data);
>>
>> la...
2006 Oct 31
0
6273860 gcc and sgs/gprof don''t get along
...cmd/sgs/gprof/common/arcs.c
update: usr/src/cmd/sgs/gprof/common/dfn.c
update: usr/src/cmd/sgs/gprof/common/gprof.c
update: usr/src/cmd/sgs/gprof/common/gprof.h
update: usr/src/cmd/sgs/gprof/common/lookup.c
update: usr/src/cmd/sgs/gprof/common/printgprof.c
update: usr/src/cmd/sgs/gprof/common/printlist.c
update: usr/src/cmd/sgs/gprof/common/readelf.c
update: usr/src/cmd/sgs/prof/common/prof.c
update: usr/src/cmd/sgs/prof/common/profv.c
update: usr/src/cmd/sgs/prof/common/profv.h
update: usr/src/cmd/sgs/prof/common/rdelf.c
update: usr/src/cmd/sgs/prof/common/symint.h
update: usr/src/cmd/sgs...