search for: type_oc_str

Displaying 3 results from an estimated 3 matches for "type_oc_str".

2012 Mar 05
3
[LLVMdev] Problem using march=c
...ions */ static _OC_str { unsigned char array[13]; }; /* Global Variable Definitions and Initialization */ static _OC_str { unsigned char array[13]; } = { "Hello World\n" }; when they should be like /* Global Variable Declarations */ static struct type_OC_str { unsigned char array[13]; }; /* Global Variable Definitions and Initialization */ static struct type_OC_str _OC_str = { "Hello World\n" }; It is a known problem, or am I doing something wrong? Thks in advance, -- Cristianno Martins PhD Student of Computer Science Univ...
2012 Mar 05
0
[LLVMdev] Problem using march=c
...          /* Global Variable Definitions and Initialization */ >                static _OC_str { unsigned char array[13]; } = { "Hello World\n" > }; > > when they should be like > >                /* Global Variable Declarations */ >                static struct type_OC_str { unsigned char array[13]; }; > >                /* Global Variable Definitions and Initialization */ >                static struct type_OC_str _OC_str = { "Hello World\n" }; > > It is a known problem, or am I doing something wrong? > > Thks in advance, > &g...
2012 Mar 05
1
[LLVMdev] Problem using march=c
...finitions and Initialization */ >>                static _OC_str { unsigned char array[13]; } = { "Hello >> World\n" >> }; >> >> when they should be like >> >>                /* Global Variable Declarations */ >>                static struct type_OC_str { unsigned char array[13]; }; >> >>                /* Global Variable Definitions and Initialization */ >>                static struct type_OC_str _OC_str = { "Hello World\n" }; >> >> It is a known problem, or am I doing something wrong? >> >> Th...