mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
f1aa4d7d7f
This patch fixes a small mistake in MCDataAtom::addData() where it doesn't ever call remap(): - if (Data.size() > Begin - End - 1) + if (Data.size() > End + 1 - Begin) remap(Begin, End + 1); This is currently not visible because of another bug is the disassembler, so the patch includes a unit test. Patch by Stephen Checkoway. llvm-svn: 192823
12 lines
116 B
CMake
12 lines
116 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MC
|
|
)
|
|
|
|
set(MCSources
|
|
MCAtomTest.cpp
|
|
)
|
|
|
|
add_llvm_unittest(MCTests
|
|
${MCSources}
|
|
)
|