r300: move some more function to generic
[mesa.git] / src / mesa / shader / slang / slang_compile_function.h
index b60b4a223f5d40acf135393f12eaaf95a4fe2600..a59b094e08d451b712fd8c3361a83a28d42d04ff 100644 (file)
@@ -25,9 +25,6 @@
 #ifndef SLANG_COMPILE_FUNCTION_H
 #define SLANG_COMPILE_FUNCTION_H
 
-#if defined __cplusplus
-extern "C" {
-#endif
 
 struct slang_code_unit_;
 
@@ -69,7 +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 */
-   slang_atom end_label;       /**< The end-of-function label */
 } slang_function;
 
 extern int slang_function_construct(slang_function *);
@@ -102,8 +98,4 @@ slang_function_scope_find_by_name(slang_function_scope *, slang_atom, int);
 extern slang_function *
 slang_function_scope_find(slang_function_scope *, slang_function *, int);
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif /* SLANG_COMPILE_FUNCTION_H */