freebsd-dev/contrib/llvm/patches
2014-12-18 18:44:22 +00:00
..
patch-01-clang-version-include.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-02-format-extensions.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-03-clang-vendor-suffix.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-04-default-target-triple.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-05-add-CC-aliases.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-06-clang-arm-target-cpu.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-07-llvm-r213960-ppc32-tls.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-08-llvm-r216989-r216990-fix-movw-armv6.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-09-clang-r217410-i386-garbage-float.diff Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00
patch-10-llvm-r221709-debug-oom.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-11-llvm-r222562-loop-rotate.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-12-add-llvm-gvn-option.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-13-llvm-r218241-dwarf2-warning.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-14-llvm-r215352-aarch64-dyn-loader.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-15-llvm-r216571-dynamiclib-usability.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-16-clang-r221900-freebsd-aarch64.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-17-llvm-r222856-libapr-miscompile.diff Remove bogus revision numbers from diff header lines in the existing 2014-11-29 20:23:18 +00:00
patch-18-llvm-r214802-armv6-cp10-cp11.diff Add patch file for r275265. 2014-11-29 20:24:18 +00:00
patch-19-llvm-r215811-arm-fpu-directive.diff Add patch file for r275280. 2014-11-30 00:09:26 +00:00
patch-20-enable-armv6-clrex.diff Add llvm patch corresponding to r275654, and clean up a few other patches. 2014-12-09 20:46:17 +00:00
patch-21-llvm-r223171-fix-vectorizer.diff Update llvm patch for r275635 so all the tests will pass. 2014-12-13 20:17:54 +00:00
patch-22-llvm-r223147-arm-cpu-directive.diff Add llvm patch corresponding to r275654, and clean up a few other patches. 2014-12-09 20:46:17 +00:00
patch-23-llvm-r221170-ppc-vaarg.diff Add clang patch corrsponding to r275773. 2014-12-14 18:21:03 +00:00
patch-r275759-clang-r221170-ppc-vaarg.diff Update clang patch for r275759 to use correct test cases. 2014-12-14 18:16:49 +00:00
README.TXT Cleanup patch set, and update README.TXT. Add three new patches. 2014-11-24 18:43:37 +00:00

This is a set of individual patches, which contain all the customizations to
llvm/clang currently in the FreeBSD base system.  These can be applied in
alphabetical order to a pristine llvm/clang 3.5.0 release source tree, for
example by doing:

svn co https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_350/final llvm-3.5.0-final 
svn co https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_350/final llvm-3.5.0-final/tools/clang
cd llvm-3.5.0-final
for p in /usr/src/contrib/llvm/patches/patch-*.diff; do
	patch -p0 -f -F0 -E -i $p -s || break
done

A number of these consist of hand-written modifications, specifically for
FreeBSD, while most others are cherry pickings off the llvm and clang trunks.
When a new version of llvm/clang is eventually imported, those latter ones will
largely disappear.