diff options
| author | Daniel Jasper <djasper@google.com> | 2014-12-26 18:21:34 +0000 |
|---|---|---|
| committer | Daniel Jasper <djasper@google.com> | 2014-12-26 18:21:34 +0000 |
| commit | 1e8eafd6c8336e495990e0014d2196d86dc86e16 (patch) | |
| tree | c8ab0c61b230cadbb1161750f9c89fa534576cb0 /compiler-rt | |
| parent | c4b12166f231e9f42c8c6bee710c95583b77dd45 (diff) | |
| download | bcm5719-llvm-1e8eafd6c8336e495990e0014d2196d86dc86e16.tar.gz bcm5719-llvm-1e8eafd6c8336e495990e0014d2196d86dc86e16.zip | |
Escape ? to silence GCC warning about trigraphs.
llvm-svn: 224863
Diffstat (limited to 'compiler-rt')
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index e9fb8fe17e7..e0f92e8b55d 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -222,7 +222,7 @@ void DumpProcessMap() { (void *)((uptr)mi.lpBaseOfDll + mi.SizeOfImage), got_module_name ? module_name : "[no name]"); } else if (got_module_name) { - Printf("\t???-??? %s\n", module_name); + Printf("\t??\?-??? %s\n", module_name); } else { Printf("\t???\n"); } |

