mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 19:00:23 +01:00
remove end_label field
This commit is contained in:
parent
35d25c0ce4
commit
faeea574af
2 changed files with 0 additions and 6 deletions
|
|
@ -86,7 +86,6 @@ slang_function_construct(slang_function * func)
|
|||
func->param_count = 0;
|
||||
func->body = NULL;
|
||||
func->address = ~0;
|
||||
func->end_label = 0;
|
||||
slang_fixup_table_init(&func->fixups);
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,11 +66,6 @@ typedef struct slang_function_
|
|||
slang_operation *body; /**< The instruction tree */
|
||||
unsigned int address; /**< Address of this func in memory */
|
||||
slang_fixup_table fixups; /**< Mem locations which need func's address */
|
||||
#if 0
|
||||
slang_atom end_label; /**< The end-of-function label */
|
||||
#else
|
||||
struct slang_label_ *end_label;
|
||||
#endif
|
||||
} slang_function;
|
||||
|
||||
extern int slang_function_construct(slang_function *);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue