diff options
author | dim <dim@FreeBSD.org> | 2014-11-24 18:43:37 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-11-24 18:43:37 +0000 |
commit | 82ca21468e7fe6a5112961ba86434579bed3f204 (patch) | |
tree | c2772f1f62ff857fee7802d46eb79f45d45d6d54 /contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff | |
parent | 6148c19c738a92f344008aa3f88f4e008bada0ee (diff) | |
download | FreeBSD-src-82ca21468e7fe6a5112961ba86434579bed3f204.zip FreeBSD-src-82ca21468e7fe6a5112961ba86434579bed3f204.tar.gz |
Cleanup patch set, and update README.TXT. Add three new patches.
Diffstat (limited to 'contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff')
-rw-r--r-- | contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff b/contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff deleted file mode 100644 index e0365bb..0000000 --- a/contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff +++ /dev/null @@ -1,33 +0,0 @@ -Pull in r198592 from upstream llvm trunk (by Venkatraman Govindaraju): - - [Sparc] Explicitly cast -1 to unsigned to fix buildbot errors. - -Introduced here: http://svnweb.freebsd.org/changeset/base/262261 - -Index: lib/Target/Sparc/Disassembler/SparcDisassembler.cpp -=================================================================== ---- lib/Target/Sparc/Disassembler/SparcDisassembler.cpp -+++ lib/Target/Sparc/Disassembler/SparcDisassembler.cpp -@@ -104,14 +104,14 @@ static const unsigned DFPRegDecoderTable[] = { - SP::D14, SP::D30, SP::D15, SP::D31 }; - - static const unsigned QFPRegDecoderTable[] = { -- SP::Q0, SP::Q8, -1, -1, -- SP::Q1, SP::Q9, -1, -1, -- SP::Q2, SP::Q10, -1, -1, -- SP::Q3, SP::Q11, -1, -1, -- SP::Q4, SP::Q12, -1, -1, -- SP::Q5, SP::Q13, -1, -1, -- SP::Q6, SP::Q14, -1, -1, -- SP::Q7, SP::Q15, -1, -1 } ; -+ SP::Q0, SP::Q8, (unsigned)-1, (unsigned)-1, -+ SP::Q1, SP::Q9, (unsigned)-1, (unsigned)-1, -+ SP::Q2, SP::Q10, (unsigned)-1, (unsigned)-1, -+ SP::Q3, SP::Q11, (unsigned)-1, (unsigned)-1, -+ SP::Q4, SP::Q12, (unsigned)-1, (unsigned)-1, -+ SP::Q5, SP::Q13, (unsigned)-1, (unsigned)-1, -+ SP::Q6, SP::Q14, (unsigned)-1, (unsigned)-1, -+ SP::Q7, SP::Q15, (unsigned)-1, (unsigned)-1 } ; - - static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, - unsigned RegNo, |