summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/clang/lib/Basic
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade our copy of llvm/clang to r155985, from upstream's release_31dim2012-05-033-3/+7
| | | | | | | branch. This brings us very close to the 3.1 release, which is planned for May 14th. MFC after: 2 weeks
* Upgrade our copy of llvm/clang to trunk r154661, in preparation of thedim2012-04-1614-623/+1391
| | | | | | | upcoming 3.1 release (expected in a few weeks). Preliminary release notes can be found at: <http://llvm.org/docs/ReleaseNotes.html> MFC after: 2 weeks
* Pull in r145194 from upstream clang trunk:dim2012-03-121-11/+34
| | | | | | | | | | | | | Make our handling of MMX x SSE closer to what gcc does: * Enabling sse enables mmx. * Disabling (-mno-mmx) mmx, doesn't disable sse (we got this right already). * The order in not important. -msse -mno-mmx is the same as -mno-mmx -msse. Some configure scripts depend on this. PR: i386/165968 MFC after: 3 days
* Upgrade our copy of llvm/clang to 3.0 release. Release notes can bedim2011-12-091-1/+1
| | | | | | found at: http://llvm.org/releases/3.0/docs/ReleaseNotes.html MFC after: 1 week
* Pull in r143305 and r143312 from upstream clang trunk, so using "clangdim2011-10-301-3/+18
| | | | | | | | -march=native" on AMD K10 family processors no longer errors out with "unknown target CPU 'amdfam10'". This also enables use of SSE4A. Reported by: David Marec <david.marec@davenulle.org> MFC after: 3 days
* Upgrade our copy of llvm/clang to r142614, from upstream's release_30dim2011-10-2212-773/+1957
| | | | | | | branch. This brings us very close to the 3.0 release, which is expected in a week or two. MFC after: 1 week
* Fix breakage introduced by r226518.dim2011-10-191-2/+3
| | | | | Spotted by: tinderbox, yanefbsd at gmail.com Pointy hat to: dim
* Fix the way clang retrieves the major FreeBSD release number from thedim2011-10-181-4/+5
| | | | | | | target triple, so that the __FreeBSD__ and __FreeBSD_cc_version builtin macros return the expected results. Spotted by: nalitoja at gmail.com
* Upgrade our copy of llvm/clang to r135360, from upstream's trunk.dim2011-07-177-229/+407
|
* Upgrade our copy of llvm/clang to r132879, from upstream's trunk.dim2011-06-126-82/+274
|
* Upgrade our copy of llvm/clang to r130700, from upstream's trunk.dim2011-05-029-177/+655
|
* For clang, make -mno-mmx imply -mno-3dnow. This is what gcc does.dim2011-04-171-4/+3
| | | | | Submitted by: arundel Obtained from: http://llvm.org/viewvc/llvm-project?view=rev&revision=129665
* Update llvm/clang to trunk r126547.dim2011-02-273-6/+23
| | | | | | | | | | | | | | There are several bugfixes in this update, but the most important one is to ensure __start_ and __stop_ symbols for linker sets and kernel module metadata are always emitted in object files: http://llvm.org/bugs/show_bug.cgi?id=9292 Before this fix, if you compiled kernel modules with clang, they would not be properly processed by kldxref, and if they had any dependencies, the kernel would fail to load those. Another problem occurred when attempting to mount a tmpfs filesystem, which would result in 'operation not supported by device'.
* Upgrade our copy of llvm/clang to r126079, from upstream's trunk.dim2011-02-2011-1277/+1744
| | | | | This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
* Remove more unneeded files and directories from contrib/llvm. Thisdim2010-10-112-68/+0
| | | | | | | still allows us to build tblgen and clang, and further reduces the footprint in the tree. Approved by: rpaulo (mentor)
* Upgrade Clang and LLVM to the 2.8 release. See here for release notes:dim2010-10-071-1/+1
| | | | | | http://llvm.org/releases/2.8/docs/ReleaseNotes.html Approved by: rpaulo (mentor)
* Upgrade our Clang in base to r114020, from upstream's release_28 branch.dim2010-09-209-76/+179
| | | | Approved-by: rpaulo (mentor)
* Upgrade our Clang in base to r108428.ed2010-07-206-20/+198
| | | | | | | | | This commit merges the latest LLVM sources from the vendor space. It also updates the build glue to match the new sources. Clang's version number is changed to match LLVM's, which means /usr/include/clang/2.0 has been renamed to /usr/include/clang/2.8. Obtained from: projects/clangbsd
* Do the branding right this time.ed2010-06-121-0/+3
| | | | | | | | | I've looked at other places in the source tree where CLANG_VENDOR is used and I suspect it might not be safe to use newlines here. CLANG_VENDOR should just be defined to "FreeBSD ", just like the latest Clang preview in OS X uses "Apple ". Properly use SVN_REVISION to define it to the imported revision of Clang. I do want to have a date in there, so slightly modify the code to support CLANG_VENDOR_SUFFIX.
* Import LLVM/clang from vendor stripped of docs/ test/ website/ www/ examples/rdivacky2010-06-0913-0/+7222
in llvm/ and/or llvm/contrib/clang/ respectively. Approved by: ed (mentor) Approved by: core
OpenPOWER on IntegriCloud