mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
9c4ae70c21
- https://reviews.llvm.org/rGb605cfb336989705f391d255b7628062d3dfe9c3 was reverted due to sanitizer bugs in the introduced unit-test (specifically in the Address sanitizer https://lab.llvm.org/buildbot/#/builders/5/builds/5697) - This patch attempts to rectify that, as well as re-factor parts of the test - The issue was previously, within the `setupCallToAsmParser` function in the unit-test, `SrcMgr` was declared as a local variable. `SrcMgr` owns a unique pointer. Since the variable goes out of scope at the end of the function, the unique pointer is released. - This patch, moves the declaration of the `SrcMgr` variable to a class field, since the scope will remain until the class's destructor is invoked (which in this case is at the end of the unit test) - Furthermore, this patch also moves the `MCContext Ctx` declaration from a local variable instance inside a function, to a unique pointer class field. This ensures the instantiation of the MCContext remains until the tear down of the test. Reviewed By: abhina.sreeskantharajan Differential Revision: https://reviews.llvm.org/D99004
15 lines
203 B
CMake
15 lines
203 B
CMake
include_directories(
|
|
${LLVM_MAIN_SRC_DIR}/lib/Target/SystemZ
|
|
)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
SystemZ
|
|
MCParser
|
|
MC
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(SystemZAsmLexerTests
|
|
SystemZAsmLexerTest.cpp
|
|
)
|