summaryrefslogtreecommitdiffstats
path: root/clang/test/Driver/unknown-gcc-arch.c
Commit message (Collapse)AuthorAgeFilesLines
* Use the integrated assembler by default on 32-bit PowerPC and SPARC.Brad Smith2015-01-141-2/+2
| | | | llvm-svn: 225958
* Revert "Use the integrated assembler by default on 32-bit PowerPC and SPARC"Duncan P. N. Exon Smith2015-01-051-2/+2
| | | | | | | | | This reverts commit r225212. It's failing on multiple buildbots [1][2]. [1]: http://lab.llvm.org:8011/builders/clang-x86_64-debian-fast/builds/22032 [2]: http://lab.llvm.org:8080/green/view/Clang/job/clang-stage1-cmake-RA-incremental_check/2357/ llvm-svn: 225221
* Use the integrated assembler by default on 32-bit PowerPC and SPARCBrad Smith2015-01-051-2/+2
| | | | llvm-svn: 225212
* Turn on the integrated assembler by default for ppc64 andEric Christopher2014-10-061-9/+9
| | | | | | | | ppc64le. Reviewed by Hal Finkel and Bill Schmidt. llvm-svn: 219129
* Fix broken RUN linesNico Rieck2014-02-161-1/+1
| | | | llvm-svn: 201475
* Implement -m32 and -m64 with llvm::Triple functions.Jakob Stoklund Olesen2014-01-101-0/+8
| | | | | | Don't repeat the 32 <-> 64 architecture mapping incompletely. llvm-svn: 198943
* Make the integrated assembler the default for cygwin/mingw too.Rafael Espindola2013-11-251-8/+8
| | | | | | | The integrated assembler was already the default for win32. It is now able to handle a clang bootstrap on mingw, so make it the default. llvm-svn: 195676
* Don't use the gcc driver for assembling.Rafael Espindola2013-11-231-8/+8
| | | | | | | | | Clang knows how to use the gnu assembler directly from doing so on linux and hurd. The existing support worked out of the box on cygwin and mingw and I was able to bootstrap clang with it in both systems (with pending patches for the new mingw abi, but that is independent of the assembler). llvm-svn: 195554
* Fix redundant comparison in gcc::Common::ConstructJob.Hans Wennborg2013-03-201-8/+32
| | | | | | | | | | We were checking "Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::x86_64", but the rhs should actually check for powerpc64. Found while experimenting with a potential new Clang warning. llvm-svn: 177496
* rename -ccc-host-triple into -targetSebastian Pop2012-01-201-4/+4
| | | | llvm-svn: 148582
* Revert r148138; it's causing test failures.Eli Friedman2012-01-131-4/+4
| | | | llvm-svn: 148141
* rename -ccc-host-triple into -targetSebastian Pop2012-01-131-4/+4
| | | | llvm-svn: 148138
* Update tests to use %clang instead of 'clang', and forcibly disable use of 'Daniel Dunbar2009-12-151-4/+4
| | | | | | | clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460
* Eliminate &&s in tests.Daniel Dunbar2009-11-081-7/+7
| | | | | | - 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious. llvm-svn: 86430
* Driver: When using the generic gcc tool, pass -m32 or -m64 if weDaniel Dunbar2009-05-021-0/+8
recognize the architecture. - This is an attempt to force gcc to the write target. - PR4094. llvm-svn: 70647
OpenPOWER on IntegriCloud