diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-09-05 22:05:32 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-09-05 22:05:32 +0000 |
commit | 62063b46fcbe811726432dd897e9b7f46f84eb44 (patch) | |
tree | bf0346aef95a04e1c36d287096d9c32124bfdb42 /compiler-rt/test/msan | |
parent | c82f650a2b64a14cef9a68295b010c1578694099 (diff) | |
download | bcm5719-llvm-62063b46fcbe811726432dd897e9b7f46f84eb44.tar.gz bcm5719-llvm-62063b46fcbe811726432dd897e9b7f46f84eb44.zip |
Use "-gline-tables-only" instead of "-g" in sanitizer test suites.
We are interested in verifying that -gline-tables-only provides enough
debug information for verbose error reports and symbolized stack traces.
llvm-svn: 217284
Diffstat (limited to 'compiler-rt/test/msan')
-rw-r--r-- | compiler-rt/test/msan/lit.cfg | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/test/msan/lit.cfg b/compiler-rt/test/msan/lit.cfg index 31436083f98..f425e25957a 100644 --- a/compiler-rt/test/msan/lit.cfg +++ b/compiler-rt/test/msan/lit.cfg @@ -13,8 +13,7 @@ clang_msan_cflags = ["-fsanitize=memory", "-mno-omit-leaf-frame-pointer", "-fno-omit-frame-pointer", "-fno-optimize-sibling-calls", - "-g", - "-m64"] + "-m64"] + config.debug_info_flags clang_msan_cxxflags = config.cxx_mode_flags + clang_msan_cflags def build_invocation(compile_flags): |