mirror of
https://github.com/intel/llvm.git
synced 2026-01-31 07:04:56 +08:00
[lldb/Reproducers] Don't instrument SBFileSpec::GetPath
This method uses a char* and length as output arguments and the reproducer instrumentation doesn't know how to deal with that (yet).
This commit is contained in:
@@ -143,7 +143,7 @@ void SBFileSpec::SetDirectory(const char *directory) {
|
||||
}
|
||||
|
||||
uint32_t SBFileSpec::GetPath(char *dst_path, size_t dst_len) const {
|
||||
LLDB_RECORD_METHOD_CONST(uint32_t, SBFileSpec, GetPath, (char *, size_t),
|
||||
LLDB_RECORD_DUMMY(uint32_t, SBFileSpec, GetPath, (char *, size_t),
|
||||
dst_path, dst_len);
|
||||
|
||||
uint32_t result = m_opaque_up->GetPath(dst_path, dst_len);
|
||||
|
||||
Reference in New Issue
Block a user