GCC主要数据结构之infile

来源:互联网 发布:软件主管岗位职责 编辑:程序博客网 时间:2024/06/05 20:26
/* Language is one of three things:   1) The name of a real programming language.   2) NULL, indicating that no one has figured out   what it is yet.   3) '*', indicating that the file should be passed   to the linker.  */struct infile{  const char *name;  const char *language;  struct compiler *incompiler;  bool compiled;  bool preprocessed;};
/* Also a vector of input files specified.  */static struct infile *infiles;int n_infiles;static int n_infiles_alloc;
alloc_infile()
add_infile()
0 0
原创粉丝点击