Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:gcc

36 // GCC abstraction
38 class GCC {
39 std::string GCCPath; // The path to the gcc executable.
41 std::vector<std::string> gccArgs; // GCC-specific arguments.
42 GCC(StringRef gccPath, StringRef RemotePath,
50 static GCC *create(std::string &Message,
120 /// understood by the GCC driver (either C or asm). If the code generator
123 virtual GCC::FileType OutputCode(const std::string &Bitcode,
128 return GCC::AsmFile;
155 GCC *gcc;
158 LLC(const std::string &llcPath, GCC *Gcc,
161 : LLCPath(llcPath), gcc(Gcc),
166 ~LLC() { delete gcc; }
187 /// understood by the GCC driver (either C or asm). If the code generator
190 virtual GCC::FileType OutputCode(const std::string &Bitcode,