Skip to content

Commit e4441fc

Browse files
committed
sanitizer_symbolizer_libcdep.cpp: Change --inlining=true to --inlines and --inlining=false to --no-inlines
1 parent 6a4fd03 commit e4441fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler-rt/lib/asan/scripts/asan_symbolize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
where it is necessary to handle site-specific quirks (e.g. binaries with debug
1818
symbols only accessible via a remote service) without having to modify the
1919
script itself.
20-
20+
2121
"""
2222
import argparse
2323
import bisect
@@ -92,7 +92,7 @@ def open_llvm_symbolizer(self):
9292
'--use-symbol-table=true',
9393
'--demangle=%s' % demangle,
9494
'--functions=linkage',
95-
'--inlining=true',
95+
'--inlines',
9696
'--default-arch=%s' % self.default_arch]
9797
if self.system == 'Darwin':
9898
for hint in self.dsym_hints:

compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ class LLVMSymbolizerProcess : public SymbolizerProcess {
275275
#endif
276276

277277
const char *const inline_flag = common_flags()->symbolize_inline_frames
278-
? "--inlining=true"
279-
: "--inlining=false";
278+
? "--inlines"
279+
: "--no-inlines";
280280
int i = 0;
281281
argv[i++] = path_to_binary;
282282
argv[i++] = inline_flag;

0 commit comments

Comments
 (0)