Displaying 1 result from an estimated 1 matches for "c_language_kind".
2004 Nov 28
1
[LLVMdev] attempt to make dummy drivers for llvm-gcc for f77, java and objc
...a){ return 0;}
These functions are for f77,objc and java :
llvm_dummies.c :
void nothing(){} // do nothing
void (*lang_expand_decl_stmt) (tree)=¬hing;
void (*lang_expand_function_end) (void)=¬hing;
_Bool statement_code_p[256]; // dummy data
c_language_kind c_language;
tree build_stmt (enum tree_code a, ... ){ return 0 ;}
int stmts_are_full_exprs_p (void){ return 0;}
int anon_aggr_type_p (tree a){ return 0;}
void prep_stmt (tree a){}
stmt_tree current_stmt_tree (void){ return 0;}
Hope this made yo...