diff options
author | dim <dim@FreeBSD.org> | 2015-12-30 14:05:33 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-12-30 14:05:33 +0000 |
commit | e71dce114233645ffe6a36ac051201c7675ac954 (patch) | |
tree | a514ffdf1456f701adb390a3d036ec30c2dcba49 /contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff | |
parent | 63b24cc778504ffd19e4c30a730e574c346312ee (diff) | |
download | FreeBSD-src-e71dce114233645ffe6a36ac051201c7675ac954.zip FreeBSD-src-e71dce114233645ffe6a36ac051201c7675ac954.tar.gz |
Drop patches which are certain to be obsolete now.
Diffstat (limited to 'contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff')
-rw-r--r-- | contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff b/contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff deleted file mode 100644 index eb00168..0000000 --- a/contrib/llvm/patches/patch-08-clang-cc1as-dwarf2.diff +++ /dev/null @@ -1,21 +0,0 @@ -In assembler mode, clang defaulted to DWARF3, if only -g was specified. -Change this to DWARF2, in the simplest way possible. (Upstream, this -was fixed in clang trunk r250173, but this was done along with a lot of -shuffling around of debug option handling, so it cannot be applied -as-is.) - -Introduced here: https://svnweb.freebsd.org/changeset/base/291701 - -Index: tools/clang/tools/driver/cc1as_main.cpp -=================================================================== ---- tools/clang/tools/driver/cc1as_main.cpp -+++ tools/clang/tools/driver/cc1as_main.cpp -@@ -141,7 +141,7 @@ struct AssemblerInvocation { - RelaxAll = 0; - NoExecStack = 0; - FatalWarnings = 0; -- DwarfVersion = 3; -+ DwarfVersion = 2; - } - - static bool CreateFromArgs(AssemblerInvocation &Res, |