Let bugpoint work on sparc with v9 instructions enabled.

llvm-svn: 25958
This commit is contained in:
Chris Lattner 2006-02-04 05:02:27 +00:00
parent 57a004abfe
commit 2d2e2e3c0e
1 changed files with 6 additions and 0 deletions

View File

@ -399,6 +399,9 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
GCCArgs.push_back("-O2"); // Optimize the program a bit...
#if defined (HAVE_LINK_R)
GCCArgs.push_back("-Wl,-R."); // Search this dir for .so files
#endif
#ifdef __sparc__
GCCArgs.push_back("-mcpu=v9");
#endif
GCCArgs.push_back(0); // NULL terminator
@ -457,6 +460,9 @@ int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
#if defined(__ia64__) || defined(__alpha__)
"-fPIC", // IA64 requires shared objs to contain PIC
#endif
#ifdef __sparc__
"-mcpu=v9",
#endif
"-o", OutputFile.c_str(), // Output to the right filename...
"-O2", // Optimize the program a bit...