search for: start_var_decl

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

2008 Nov 24
2
[LLVMdev] RFC: Mangling Unnamed Global Values
...harge of assigning them >> names, they never seem to be decorated with the 'L' in front. . . . > > If you use SET_DECL_ASSEMBLER_NAME (something like that) you can > specify the full name for this stuff, including the L. This is how > other Objc metadata works. Yup. see start_var_decl() in objc-act.c and its uses of set_user_assembler_name(). - Devang
2008 Nov 24
2
[LLVMdev] RFC: Mangling Unnamed Global Values
The symbols I'm interested in already have internal linkage (as you would expect). But because the mangler is in charge of assigning them names, they never seem to be decorated with the 'L' in front. . . . -bw On Mon, Nov 24, 2008 at 10:48 AM, Dan Gohman <gohman at apple.com> wrote: > Can symbols with external linkage but no name be converted > to have internal linkage?
2008 Nov 24
0
[LLVMdev] RFC: Mangling Unnamed Global Values
On Nov 24, 2008, at 11:01 AM, Bill Wendling wrote: > The symbols I'm interested in already have internal linkage (as you > would expect). But because the mangler is in charge of assigning them > names, they never seem to be decorated with the 'L' in front. . . . If you use SET_DECL_ASSEMBLER_NAME (something like that) you can specify the full name for this stuff, including