| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Fake Address Sanitizer run-time support. | 5 // Fake Address Sanitizer run-time support. |
| 6 // Enough for programs to link and run, but will not find any errors. | 6 // Enough for programs to link and run, but will not find any errors. |
| 7 // Also, linking this to shared libraries voids the warranty. | 7 // Also, linking this to shared libraries voids the warranty. |
| 8 // | 8 // |
| 9 // We need this fake thunks if we build Chrome with ASAN support because | 9 // We need this fake thunks if we build Chrome with ASAN support because |
| 10 // pyautolib DSO is instrumented with ASAN and is loaded to regular python | 10 // pyautolib DSO is instrumented with ASAN and is loaded to regular python |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 void __asan_report_load1() { } | 66 void __asan_report_load1() { } |
| 67 void __asan_report_load2() { } | 67 void __asan_report_load2() { } |
| 68 void __asan_report_load4() { } | 68 void __asan_report_load4() { } |
| 69 void __asan_report_load8() { } | 69 void __asan_report_load8() { } |
| 70 void __asan_report_load16() { } | 70 void __asan_report_load16() { } |
| 71 void __asan_report_store1() { } | 71 void __asan_report_store1() { } |
| 72 void __asan_report_store2() { } | 72 void __asan_report_store2() { } |
| 73 void __asan_report_store4() { } | 73 void __asan_report_store4() { } |
| 74 void __asan_report_store8() { } | 74 void __asan_report_store8() { } |
| 75 void __asan_report_store16() { } | 75 void __asan_report_store16() { } |
| 76 void __asan_set_error_report_callback() { } |
| OLD | NEW |