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,
122 /// understood by the GCC driver (either C or asm). If the code generator
125 virtual GCC::FileType OutputCode(const std::string &Bitcode,
130 return GCC::AsmFile;
157 GCC *gcc;
160 LLC(const std::string &llcPath, GCC *Gcc,
163 : LLCPath(llcPath), gcc(Gcc),
168 ~LLC() { delete gcc; }
189 /// understood by the GCC driver (either C or asm). If the code generator
192 GCC::FileType OutputCode(const std::string &Bitcode,