diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-24 17:03:23 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-24 17:03:23 -0500 |
commit | e3aa668ef358739148adb1a4965b629d07467575 (patch) | |
tree | dddffef533139b5cc380783f45f17fce054f3480 | |
parent | 55d0ece0a9072ca409bdf6ff2f3b6d0b268e2952 (diff) |
loading a file
-rw-r--r-- | base.h | 10 | ||||
-rw-r--r-- | buffer.c | 116 | ||||
-rw-r--r-- | main.c | 16 | ||||
-rw-r--r-- | util.c | 20 | ||||
-rw-r--r-- | valgrind_suppresions.txt | 42841 |
5 files changed, 42970 insertions, 33 deletions
@@ -9,6 +9,7 @@ #include <stdint.h> #include <stdio.h> #include <stddef.h> +#include <assert.h> typedef uint8_t u8; typedef uint16_t u16; @@ -24,6 +25,15 @@ typedef unsigned int uint; typedef unsigned long ulong; #ifdef __GNUC__ +#define WarnUnusedResult __attribute__((warn_unused_result)) +#else +#define WarnUnusedResult +#endif + +#define Status bool WarnUnusedResult // false = error, true = success + + +#ifdef __GNUC__ #define no_warn_start _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wpedantic\"") \ _Pragma("GCC diagnostic ignored \"-Wsign-conversion\"") \ diff --git a/buffer.c b/buffer.c new file mode 100644 index 0000000..78fcc1a --- /dev/null +++ b/buffer.c @@ -0,0 +1,116 @@ +// Text buffers - These store the contents of a file. +// To make inserting characters faster, the file contents are split up into +// blocks of a few thousand bytes. Block boundaries are not necessarily +// on character boundaries, so one block might have part of a UTF-8 character +// with the next block having the rest. +#include "util.c" + +#define TEXT_BLOCK_MAX_SIZE 400 +// Once two adjacent blocks are at most this big, combine them into +// one bigger text block. +#define TEXT_BLOCK_COMBINE_SIZE (3*(TEXT_BLOCK_MAX_SIZE / 4)) +// A good size for text blocks to be. When a file is loaded, there +// shouldn't be just full blocks, because they will all immediately split. +// Instead, we use blocks of this size. +#define TEXT_BLOCK_DEFAULT_SIZE (3*(TEXT_BLOCK_MAX_SIZE / 4)) +typedef struct { + u16 len; + char *contents; +} TextBlock; + +typedef struct { + u32 nblocks; // number of text blocks + TextBlock *blocks; +} TextBuffer; + +// Returns a new block added at index `where`, +// or NULL if there's not enough memory. +static TextBlock *text_buffer_add_block(TextBuffer *buffer, u32 where) { + // make sure we can actually allocate enough memory for the contents of the block + // before doing anything + char *block_contents = calloc(1, TEXT_BLOCK_MAX_SIZE); + if (!block_contents) { + return NULL; + } + + u32 nblocks_before = buffer->nblocks; + u32 nblocks_after = buffer->nblocks + 1; + if (util_is_power_of_2(nblocks_after)) { + // whenever the number of blocks is a power of 2, we need to grow the blocks array. + buffer->blocks = realloc(buffer->blocks, 2 * nblocks_after * sizeof *buffer->blocks); + if (!buffer->blocks) { + // out of memory + free(block_contents); + return NULL; + } + } + if (where != nblocks_before) { // if we aren't just inserting the block at the end, + // make space for the new block + memmove(buffer->blocks + (where + 1), buffer->blocks + where, nblocks_before - where); + } + + TextBlock *block = buffer->blocks + where; + util_zero_memory(block, sizeof *buffer->blocks); // zero everything + block->contents = block_contents; + + + buffer->nblocks = nblocks_after; + return block; +} + +Status text_buffer_load_file(TextBuffer *buffer, FILE *fp) { + char block_contents[TEXT_BLOCK_DEFAULT_SIZE]; + size_t bytes_read; + + util_zero_memory(buffer, sizeof *buffer); + + // read file one block at a time + do { + bytes_read = fread(block_contents, 1, sizeof block_contents, fp); + if (bytes_read > 0) { + TextBlock *block = text_buffer_add_block(buffer, buffer->nblocks); + if (!block) { + return false; + } + memcpy(block->contents, block_contents, bytes_read); + block->len = (u16)bytes_read; + } + } while (bytes_read == sizeof block_contents); + if (ferror(fp)) + return false; + return true; +} + +static void text_buffer_print_internal(TextBuffer *buffer, bool debug) { + printf("\033[2J\033[;H"); + TextBlock *blocks = buffer->blocks; + u32 nblocks = buffer->nblocks; + + for (u32 i = 0; i < nblocks; ++i) { + TextBlock *block = &blocks[i]; + fwrite(block->contents, 1, block->len, stdout); + if (debug) + printf("\n\n------\n\n"); // NOTE: could be bad with UTF-8 + } + fflush(stdout); +} + +// print the contents of a buffer to stdout +void text_buffer_print(TextBuffer *buffer) { + text_buffer_print_internal(buffer, false); +} + +// print the contents of a buffer to stdout, along with debugging information +void text_buffer_print_debug(TextBuffer *buffer) { + text_buffer_print_internal(buffer, true); +} + +// Does not free the pointer `buffer` (buffer might not have even been allocated with malloc) +void text_buffer_free(TextBuffer *buffer) { + TextBlock *blocks = buffer->blocks; + u32 nblocks = buffer->nblocks; + for (u32 i = 0; i < nblocks; ++i) { + free(blocks[i].contents); + } + free(blocks); +} @@ -5,6 +5,7 @@ no_warn_end #include <GL/gl.h> #include <locale.h> #include "text.h" +#include "buffer.c" static void die(char const *fmt, ...) { char buf[256] = {0}; @@ -47,6 +48,18 @@ int main(void) { } bool quit = false; + TextBuffer text_buffer; + + { + FILE *fp = fopen("main.c", "r"); + assert(fp); + bool success = text_buffer_load_file(&text_buffer, fp); + fclose(fp); + if (!success) + die("Error loading file."); + } + + while (!quit) { SDL_Event event; while (SDL_PollEvent(&event)) { @@ -77,12 +90,15 @@ int main(void) { break; } + //text_buffer_print_debug(&text_buffer); + SDL_GL_SwapWindow(window); } SDL_GL_DeleteContext(glctx); SDL_DestroyWindow(window); SDL_Quit(); + text_buffer_free(&text_buffer); text_font_free(font); return 0; @@ -0,0 +1,20 @@ +#ifndef UTIL_C_ +#define UTIL_C_ + +#include "base.h" + +static uint util_popcount(u64 x) { + // @TODO: portability + return (uint)__builtin_popcountll(x); +} + +static bool util_is_power_of_2(u64 x) { + return util_popcount(x) == 1; +} + +static void util_zero_memory(void *mem, size_t size) { + extern void *memset(void *s, int c, size_t n); + memset(mem, 0, size); +} + +#endif diff --git a/valgrind_suppresions.txt b/valgrind_suppresions.txt index 21b3680..3a6bc8d 100644 --- a/valgrind_suppresions.txt +++ b/valgrind_suppresions.txt @@ -1,70 +1,42845 @@ { - Ignore dlopen . + <insert_a_suppression_name_here> + Memcheck:Addr8 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + fun:drmGetDevice2 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Addr8 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + fun:drmGetDevices2 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Addr8 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + fun:drmGetDevice2 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Addr8 + fun:strncmp + fun:is_dst + fun:_dl_dst_count + fun:expand_dynamic_string_token + fun:fillin_rpath.isra.0 + fun:decompose_rpath + fun:cache_rpath + fun:cache_rpath + fun:_dl_map_object + fun:openaux + fun:_dl_catch_exception + fun:_dl_map_object_deps + fun:dl_open_worker + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Addr8 + fun:strncmp + fun:is_dst + fun:_dl_dst_substitute + fun:fillin_rpath.isra.0 + fun:decompose_rpath + fun:cache_rpath + fun:cache_rpath + fun:_dl_map_object + fun:openaux + fun:_dl_catch_exception + fun:_dl_map_object_deps + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Addr8 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + obj:/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 + fun:drmGetDevice2 + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcDefaultMapModifiers + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XimOpenIM + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZN4llvm12PassRegistry23addRegistrationListenerEPNS_24PassRegistrationListenerE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZNK4llvm15LLVMContextImpl14getOptPassGateEv + fun:_ZNK4llvm12FunctionPass12skipFunctionERKNS_8FunctionE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm13FPPassManager13runOnFunctionERNS_8FunctionE + fun:_ZN4llvm13FPPassManager11runOnModuleERNS_6ModuleE + fun:_ZN4llvm6legacy15PassManagerImpl3runERNS_6ModuleE + fun:LLVMRunPassManager + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b + fun:LLVMParseCommandLineOptions + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b + fun:LLVMParseCommandLineOptions + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm44initializeTargetTransformInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIslScheduleOptimizerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeTypeBasedAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm14createSROAPassEv + fun:LLVMAddScalarReplAggregatesPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23createAggressiveDCEPassEv + fun:LLVMAddAggressiveDCEPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36createStraightLineStrengthReducePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm17createSinkingPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeLoopInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScalarEvolutionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeLCSSAWrapperPassPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeMemoryDependenceWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + fun:_XlcResolveLocaleName + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_threads_init + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dbus_register_shutdown_func + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dbus_register_shutdown_func + fun:dbus_message_unref + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply_and_block + fun:dbus_bus_register + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeDominatorTreeWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeCallGraphWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeGlobalsAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeGISelCSEAnalysisWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createBarrierNoopPassEv + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createPromoteMemoryToRegisterPassEv + fun:LLVMAddPromoteMemoryToRegisterPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm6SDNode16getValueTypeListENS_3EVTE + fun:_ZN4llvm12SelectionDAGC1ERKNS_13TargetMachineENS_10CodeGenOpt5LevelE + fun:_ZN4llvm16SelectionDAGISelC2ERNS_13TargetMachineENS_10CodeGenOpt5LevelE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig17addCoreISelPassesEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLiveRangeShrinkPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeOptimizePHIsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeIVUsersWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28createLoopStrengthReducePassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeDeadCodeElimPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMaximalStaticExpanderPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeIslAstInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23initializeLegalizerPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23initializeLocalizerPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeMemorySSAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeMIRNamerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMachinePipelinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm18createEarlyCSEPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePhiValuesWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeGlobalsAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeLegacyDivergenceAnalysisPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeVirtRegMapPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeLiveStacksPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeMachineCopyPropagationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeSafeStackLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createMergeICmpsLegacyPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeBlockFrequencyInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm20createFlattenCFGPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeObjCARCAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializePostDominatorTreeWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeDominanceFrontierWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeSlotIndexesPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveIntervalsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm27createCFGSimplificationPassEjbbbbSt8functionIFbRKNS_8FunctionEEE + fun:LLVMAddCFGSimplificationPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24InstructionCombiningPassC1Ev + fun:LLVMAddInstructionCombiningPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeGCMachineCodeAnalysisPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLowerIntrinsicsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeMachineCSEPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeMachineLICMPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePostMachineSchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeShrinkWrapPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28createLoopStrengthReducePassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm46initializeBranchProbabilityInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeBlockFrequencyInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerSwitchPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerInvokePassEv + fun:_ZN4llvm16TargetPassConfig27addPassesToHandleExceptionsEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dbus_strdup + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeForwardOpTreePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm20initializeDeLICMPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeDebugifyMachineModulePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeExpandMemCmpPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeMachineSinkingPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm17initializePEIPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePeepholeOptimizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeEdgeBundlesPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeRegAllocFastPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeWinEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35createCanonicalizeFreezeInLoopsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeTargetLibraryInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeCFLAndersAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeCFLSteensAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeCodePreparationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIslScheduleOptimizerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodegenCleanupPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineLoopInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveIntervalsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveRegMatrixPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29createAlwaysInlinerLegacyPassEb + fun:LLVMAddAlwaysInlinerPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeLoopSimplifyPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeAtomicExpandPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeBranchFolderPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeExpandPostRAPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeFEntryInserterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeFinalizeISelPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeLiveDebugVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializePostRASchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21initializeRABasicPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeSjLjEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeWasmEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScopedNoAliasAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeSimplifyPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeMachineDominatorTreePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineLoopInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCFGuardLongjmpPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDwarfEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeFuncletLayoutPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeHardwareLoopsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeProcessImplicitDefsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializePhysicalRegisterUsageInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeRegUsageInfoCollectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeStackColoringPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeTypePromotionPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm24createStructurizeCFGPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDummyCGSCCPassPassERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeLazyBFIPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializePolyhedralInfoPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLiveDebugValuesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeLocalStackSlotPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineBlockPlacementPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeMachineVerifierPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeStackProtectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm37initializeStripDebugMachineModulePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeTailDuplicatePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeVirtRegRewriterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createRewriteSymbolsPassEv + fun:_ZN4llvm16TargetPassConfig17addCodeGenPrepareEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeLazyValueInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerSwitchPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createFixIrreduciblePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dl_close_worker + fun:_dl_close + fun:_dl_catch_exception + fun:_dl_catch_error + fun:dlerror_run + fun:free_mem + fun:__libc_freeres + fun:_vgnU_freeres + fun:__run_exit_handlers + fun:exit + fun:(below main) +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScalarEvolutionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeLazyBPIPassPassERNS_12PassRegistryE + fun:_ZN4llvm25initializeLazyBFIPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeTargetPassConfigPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeGISelKnownBitsAnalysisPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInstructionSelectPassERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm18createEarlyCSEPassEb + fun:LLVMAddEarlyCSEMemSSAPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineCombinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineOutlinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25createNaryReassociatePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createUnifyLoopExitsPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeDumpModulePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28MachineModuleInfoWrapperPassC1EPKNS_17LLVMTargetMachineE + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeBranchRelaxationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeDetectDeadLanesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyMachineLICMPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIndirectBrExpandPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMIRCanonicalizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMachineSchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeStackMapLivenessPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeUnpackMachineBundlesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createExpandReductionsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeJSONExporterPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeJSONImporterPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePollyCanonicalizePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeScopInlinerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInstructionSelectPassERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeMachinePostDominatorTreePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeLCSSAVerificationPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeLCSSAWrapperPassPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeBBSectionsPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeCFIInstrInserterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeGCModuleInfoPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInterleavedAccessPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePatchableFunctionPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializePostRAHazardRecognizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_string_append_byte + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_lookup_user_bus + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeMachineBranchProbabilityInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeDeadMachineInstructionElimPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeEarlyIfPredicatorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeFinalizeMachineBundlesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeMachineDominanceFrontierPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineRegionInfoPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineRegionInfoPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePostRAMachineSinkingPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeStackSlotColoringPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeScopInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeDependenceInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeProfileSummaryInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeImplicitNullChecksPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeMachineFunctionPrinterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeModuloScheduleTestPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializePHIEliminationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeSpillPlacementPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm44initializeUnreachableBlockElimLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeXRayInstrumentationPassERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dbus_strdup + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeMachineTraceMetricsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeEarlyTailDuplicatePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeMachineBlockPlacementStatsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeRegUsageInfoCollectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm37initializeRegUsageInfoPropagationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeTwoAddressInstructionPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29createLoadStoreVectorizerPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeFlattenSchedulePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:XInitThreads + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:XInitThreads + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_message_loader_queue_messages + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply_and_block +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libz3.so.4 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm2cl14OptionCategory16registerCategoryEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm47initializeLazyMachineBlockFrequencyInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeMachineOptimizationRemarkEmitterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeAssumptionCacheTrackerPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePruneUnprofitablePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeInterleavedLoadCombinePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31createShadowStackGCLoweringPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createLowerConstantIntrinsicsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createPartiallyInlineLibCallsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41createPostInlineEntryExitInstrumenterPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeDependenceInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeRewriteByrefParamsPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeMachineOptimizationRemarkEmitterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeRegisterCoalescerPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21initializeRABasicPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeRenameIndependentSubregsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeUnreachableMachineBlockElimPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm48initializePreISelIntrinsicLoweringLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScalarizeMaskedMemIntrinPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dl_new_object + fun:_dl_map_object_from_fd + fun:_dl_map_object + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + fun:_dl_map_object + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 + obj:* +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeFixupStatepointCallerSavedPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36createSeparateConstOffsetFromGEPPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm6SDNode16getValueTypeListENS_3EVTE + fun:_ZN4llvm12SelectionDAG7getNodeEjRKNS_5SDLocENS_3EVTENS_7SDValueENS_11SDNodeFlagsE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12SelectionDAG13LegalizeTypesEv + fun:_ZN4llvm16SelectionDAGISel17CodeGenAndEmitDAGEv + fun:_ZN4llvm16SelectionDAGISel20SelectAllBasicBlocksERKNS_8FunctionE + fun:_ZN4llvm16SelectionDAGISel20runOnMachineFunctionERNS_15MachineFunctionE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm6SDNode16getValueTypeListENS_3EVTE + fun:_ZN4llvm12SelectionDAG7getNodeEjRKNS_5SDLocENS_3EVTENS_7SDValueENS_11SDNodeFlagsE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12SelectionDAG13LegalizeTypesEv + fun:_ZN4llvm16SelectionDAGISel17CodeGenAndEmitDAGEv + fun:_ZN4llvm16SelectionDAGISel20SelectAllBasicBlocksERKNS_8FunctionE + fun:_ZN4llvm16SelectionDAGISel20runOnMachineFunctionERNS_15MachineFunctionE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeIN4llvm3EVTES1_St9_IdentityIS1_ENS1_14compareRawBitsESaIS1_EE16_M_insert_uniqueIRKS1_EESt4pairISt17_Rb_tree_iteratorIS1_EbEOT_ + fun:_ZN4llvm6SDNode16getValueTypeListENS_3EVTE + fun:_ZN4llvm12SelectionDAG7getNodeEjRKNS_5SDLocENS_3EVTENS_7SDValueENS_11SDNodeFlagsE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12SelectionDAG13LegalizeTypesEv + fun:_ZN4llvm16SelectionDAGISel17CodeGenAndEmitDAGEv + fun:_ZN4llvm16SelectionDAGISel20SelectAllBasicBlocksERKNS_8FunctionE + fun:_ZN4llvm16SelectionDAGISel20runOnMachineFunctionERNS_15MachineFunctionE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception fun:_dl_open - ... + fun:dlopen_doit } { - Ignore dlopen . + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XrmInternalStringToQuark + fun:_XlcGetCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8LocaleConverters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcAddUtf8Converters + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcSetConverter + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateDefaultCharSet + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_jESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl5applyINS0_3optINS_13RegBankSelect4ModeELb0ENS0_6parserIS4_EEEENS0_18NumOccurrencesFlagEJNS0_11ValuesClassEEEEvPT_RKT0_DpRKT1_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeAssumptionCacheTrackerPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeDominatorTreeWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeTargetLibraryInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePhiValuesWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeBasicAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeCFLAndersAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeCFLSteensAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeCallGraphWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeGlobalsAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeGlobalsAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeObjCARCAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeLoopInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScalarEvolutionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScalarEvolutionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeSCEVAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeScopedNoAliasAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeTypeBasedAAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeAAResultsWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializePostDominatorTreeWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeDominanceFrontierWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeRegionInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeLazyBPIPassPassERNS_12PassRegistryE + fun:_ZN4llvm25initializeLazyBFIPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeLazyBFIPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeOptimizationRemarkEmitterWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScopDetectionWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeScopInfoRegionPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDependenceInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenerationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeCodePreparationPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeDeadCodeElimPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeScopInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeDependenceInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeDependenceInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeJSONExporterPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeJSONImporterPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMaximalStaticExpanderPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeIslAstInfoWrapperPassPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm44initializeTargetTransformInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIslScheduleOptimizerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIslScheduleOptimizerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePollyCanonicalizePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializePolyhedralInfoPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeScopInlinerPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeRewriteByrefParamsPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodegenCleanupPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeFlattenSchedulePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeForwardOpTreePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm20initializeDeLICMPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeSimplifyPassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeDumpModulePassERNS_12PassRegistryE + fun:_ZN5polly21initializePollyPassesERN4llvm12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePruneUnprofitablePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeTargetPassConfigPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeGISelCSEAnalysisWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeIRTranslatorPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23initializeLegalizerPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23initializeLocalizerPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm42initializeMachineBranchProbabilityInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeMachineDominatorTreePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineLoopInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineLoopInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeMachineBlockFrequencyInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeRegBankSelectPassERNS_12PassRegistryE + fun:_ZN4llvm20initializeGlobalISelERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeGISelKnownBitsAnalysisPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInstructionSelectPassERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInstructionSelectPassERNS_12PassRegistryE + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeLegacyDivergenceAnalysisPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeMachinePostDominatorTreePassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeVirtRegMapPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeSlotIndexesPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveIntervalsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveIntervalsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeMemoryDependenceWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveRegMatrixPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeProfileSummaryInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:LLVMInitializeAMDGPUTarget + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29createAlwaysInlinerLegacyPassEb + fun:LLVMAddAlwaysInlinerPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createBarrierNoopPassEv + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createPromoteMemoryToRegisterPassEv + fun:LLVMAddPromoteMemoryToRegisterPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm14createSROAPassEv + fun:LLVMAddScalarReplAggregatesPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeLoopSimplifyPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeLCSSAVerificationPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeLCSSAWrapperPassPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeLCSSAWrapperPassPassERNS_12PassRegistryE + fun:_ZN4llvm22initializeLoopPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeMemorySSAWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm14createLICMPassEv + fun:LLVMAddLICMPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm23createAggressiveDCEPassEv + fun:LLVMAddAggressiveDCEPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm27createCFGSimplificationPassEjbbbbSt8functionIFbRKNS_8FunctionEEE + fun:LLVMAddCFGSimplificationPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm18createEarlyCSEPassEb + fun:LLVMAddEarlyCSEMemSSAPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24InstructionCombiningPassC1Ev + fun:LLVMAddInstructionCombiningPass + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28MachineModuleInfoWrapperPassC1EPKNS_17LLVMTargetMachineE + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + fun:start_thread + fun:clone +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeAtomicExpandPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeBBSectionsPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeBranchFolderPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeBranchRelaxationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCFGuardLongjmpPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeCFIInstrInserterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeCodeGenPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeDeadMachineInstructionElimPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeDebugifyMachineModulePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeDetectDeadLanesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDwarfEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeMachineTraceMetricsPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeEarlyIfPredicatorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeEarlyMachineLICMPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeEarlyTailDuplicatePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeExpandMemCmpPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeExpandPostRAPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeFEntryInserterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeFinalizeISelPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeFinalizeMachineBundlesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeFixupStatepointCallerSavedPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeFuncletLayoutPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeGCMachineCodeAnalysisPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeGCModuleInfoPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeHardwareLoopsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeIfConverterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeImplicitNullChecksPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeIndirectBrExpandPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeInterleavedLoadCombinePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeInterleavedAccessPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLiveDebugValuesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeLiveDebugVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLiveRangeShrinkPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeLiveStacksPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41initializeUnreachableMachineBlockElimPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeLiveVariablesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeLocalStackSlotPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeLowerIntrinsicsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMIRCanonicalizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeMIRNamerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineBlockPlacementPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeMachineBlockPlacementStatsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeMachineCSEPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineCombinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializeMachineCopyPropagationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm40initializeMachineFunctionPrinterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeMachineLICMPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm47initializeLazyMachineBlockFrequencyInfoPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeMachineOptimizationRemarkEmitterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm50initializeMachineOptimizationRemarkEmitterPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeMachineOutlinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMachinePipelinerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeModuloScheduleTestPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeMachineDominanceFrontierPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineRegionInfoPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineRegionInfoPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeMachineSchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeMachineSinkingPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeMachineVerifierPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeOptimizePHIsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm17initializePEIPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializePHIEliminationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePatchableFunctionPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializePeepholeOptimizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePostMachineSchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36initializePostRAHazardRecognizerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializePostRAMachineSinkingPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializePostRASchedulerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm48initializePreISelIntrinsicLoweringLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeProcessImplicitDefsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeRegisterCoalescerPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21initializeRABasicPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21initializeRABasicPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25initializeEdgeBundlesPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeSpillPlacementPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeRAGreedyPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeRegAllocFastPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializePhysicalRegisterUsageInfoPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeRegUsageInfoCollectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeRegUsageInfoCollectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm37initializeRegUsageInfoPropagationPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeRenameIndependentSubregsPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeSafeStackLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeScalarizeMaskedMemIntrinPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24initializeShrinkWrapPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeSjLjEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeStackColoringPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm30initializeStackMapLivenessPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeStackProtectorPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31initializeStackSlotColoringPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm37initializeStripDebugMachineModulePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeTailDuplicatePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm39initializeTwoAddressInstructionPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeTypePromotionPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm34initializeUnpackMachineBundlesPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm44initializeUnreachableBlockElimLegacyPassPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29initializeVirtRegRewriterPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm27initializeWasmEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26initializeWinEHPreparePassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33initializeXRayInstrumentationPassERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36createSeparateConstOffsetFromGEPPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm36createStraightLineStrengthReducePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm18createEarlyCSEPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm25createNaryReassociatePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35createCanonicalizeFreezeInLoopsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm32initializeIVUsersWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28createLoopStrengthReducePassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28createLoopStrengthReducePassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createMergeICmpsLegacyPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm31createShadowStackGCLoweringPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createLowerConstantIntrinsicsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm46initializeBranchProbabilityInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeBlockFrequencyInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm43initializeBlockFrequencyInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createConstantHoistingPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm33createPartiallyInlineLibCallsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm41createPostInlineEntryExitInstrumenterPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm26createExpandReductionsPassEv + fun:_ZN4llvm16TargetPassConfig11addIRPassesEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createRewriteSymbolsPassEv + fun:_ZN4llvm16TargetPassConfig17addCodeGenPrepareEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm29createLoadStoreVectorizerPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm38initializeLazyValueInfoWrapperPassPassERNS_12PassRegistryE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerSwitchPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerSwitchPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm21createLowerInvokePassEv + fun:_ZN4llvm16TargetPassConfig27addPassesToHandleExceptionsEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm20createFlattenCFGPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createFixIrreduciblePassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createUnifyLoopExitsPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm24createStructurizeCFGPassEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm17createSinkingPassEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm28initializeDummyCGSCCPassPassERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfig14addISelPrepareEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcAddCharSet + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_message_loader_queue_messages + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateDefaultCharSet + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_type_writer_recurse + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_header_set_field_basic + fun:dbus_message_set_reply_serial + fun:dbus_message_new_error + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_dl_check_map_versions + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error fun:_dlerror_run - ... + fun:dlopen@@GLIBC_2.2.5 + obj:/usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm2cl14OptionCategory16registerCategoryEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception } { - Ignore dlopen . + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm2cl14OptionCategory16registerCategoryEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init fun:_dl_init - ... + fun:_dl_catch_exception + fun:dl_open_worker } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... - obj:*/radeonsi_dri.so - ... + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm12PassRegistry15getPassRegistryEv + fun:_ZN4llvm14PassNameParserC1ERNS_2cl6OptionE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 fun:_XlcCreateLC - ... + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... - obj:*LLVM* - ... + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_message_new_method_call + fun:dbus_bus_register + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_message_new_error + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply fun:dbus_connection_send_with_reply_and_block - ... + fun:dbus_bus_register + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:calloc + fun:_ZN4llvm13StringMapImpl15LookupBucketForENS_9StringRefE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_type_writer_recurse + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_message_new_method_call + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_message_loader_queue_messages + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm2cl14OptionCategory16registerCategoryEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_type_writer_recurse + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_header_set_field_basic + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_message_iter_append_basic + fun:dbus_message_append_args_valist + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_XlcCreateDefaultCharSet + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm18PassManagerBuilder18addGlobalExtensionENS0_16ExtensionPointTyESt8functionIFvRKS0_RNS_6legacy15PassManagerBaseEEE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + fun:_dl_load_cache_lookup + fun:_dl_map_object + fun:openaux + fun:_dl_catch_exception + fun:_dl_map_object_deps + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_dl_new_object + fun:_dl_map_object_from_fd + fun:_dl_map_object + fun:openaux + fun:_dl_catch_exception + fun:_dl_map_object_deps + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_threads_init + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_message_loader_queue_messages + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply_and_block + fun:dbus_bus_register +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateDefaultCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:realloc + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:_dbus_type_writer_write_basic + fun:dbus_message_iter_append_basic + fun:dbus_message_new_error + obj:/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13 + fun:dbus_connection_send_with_reply + fun:dbus_connection_send_with_reply_and_block +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + fun:main +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcAddCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_ + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateDefaultCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:add_to_global_resize + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 + obj:* + obj:* +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_dl_new_object + fun:_dl_map_object_from_fd + fun:_dl_map_object + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZNK4llvm17ManagedStaticBase21RegisterManagedStaticEPFPvvEPFvS1_E + fun:_ZN4llvm6SDNode16getValueTypeListENS_3EVTE + fun:_ZN4llvm12SelectionDAGC1ERKNS_13TargetMachineENS_10CodeGenOpt5LevelE + fun:_ZN4llvm16SelectionDAGISelC2ERNS_13TargetMachineENS_10CodeGenOpt5LevelE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig17addCoreISelPassesEv + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_XlcCreateDefaultCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:do_lookup_unique + fun:do_lookup_x + fun:_dl_lookup_symbol_x + fun:elf_machine_rela + fun:elf_dynamic_do_Rela + fun:_dl_relocate_object + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_XrmInternalStringToQuark + fun:_XlcGetCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC + fun:XSetLocaleModifiers +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + fun:_ZNSt6vectorISt10unique_ptrIKN4llvm8PassInfoESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_ + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm24createRewriteSymbolsPassEv + fun:_ZN4llvm16TargetPassConfig17addCodeGenPrepareEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm16TargetPassConfig13addISelPassesEv + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + fun:strdup + obj:/usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 + fun:_glapi_get_proc_address + obj:* + obj:/usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 fun:__glDispatchMakeCurrent - ... + obj:/usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_ZN4llvm13StringMapImpl11RehashTableEj + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm35initializeMachineBlockPlacementPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_dl_check_map_versions + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run + fun:dlopen@@GLIBC_2.2.5 + obj:* + obj:* } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... - obj:*libdbus-1.so* - ... + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XrmInternalStringToQuark + fun:_XlcGetCharSet + fun:_XlcAddCT + fun:_XlcInitCTInfo + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC } { - Ignore. + <insert_a_suppression_name_here> Memcheck:Leak - ... + match-leak-kinds: reachable + fun:malloc + fun:_XrmInternalStringToQuark + fun:_XlcGetLocaleDataBase + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + obj:/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 + fun:_XlcCreateLC + fun:_XlcUtf8Loader + fun:_XOpenLC + fun:_XlcCurrentLC fun:XSetLocaleModifiers - ... + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 + obj:/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.12.0 +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:__pthread_once_slow + fun:_ZN4llvm22initializeMIRNamerPassERNS_12PassRegistryE + fun:_ZN4llvm17initializeCodeGenERNS_12PassRegistryE + fun:_ZN4llvm16TargetPassConfigC1ERNS_17LLVMTargetMachineERNS_6legacy15PassManagerBaseE + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm17LLVMTargetMachine19addPassesToEmitFileERNS_6legacy15PassManagerBaseERNS_17raw_pwrite_streamEPS4_NS_15CodeGenFileTypeEbPNS_28MachineModuleInfoWrapperPassE + obj:/usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_dl_new_object + fun:_dl_map_object_from_fd + fun:_dl_map_object + fun:openaux + fun:_dl_catch_exception + fun:_dl_map_object_deps + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + fun:_ZN4llvm13StringMapImpl11RehashTableEj + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:_ZN4llvm2cl6Option11addArgumentEv + obj:/usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open +} +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + obj:/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 + fun:call_init.part.0 + fun:call_init + fun:_dl_init + fun:_dl_catch_exception + fun:dl_open_worker + fun:_dl_catch_exception + fun:_dl_open + fun:dlopen_doit + fun:_dl_catch_exception + fun:_dl_catch_error + fun:_dlerror_run } |