diff options
| author | Simon Dardis <simon.dardis@imgtec.com> | 2017-05-09 17:58:33 +0000 |
|---|---|---|
| committer | Simon Dardis <simon.dardis@imgtec.com> | 2017-05-09 17:58:33 +0000 |
| commit | ad11bf54bf49eaabec29ff318e6de108b1e60b99 (patch) | |
| tree | 7c439e015c6eeab014c3ea5328a332b2c00dac21 | |
| parent | a0efcfe92b9e12be83c80878ce83e18fe8234c3d (diff) | |
| download | bcm5719-llvm-ad11bf54bf49eaabec29ff318e6de108b1e60b99.tar.gz bcm5719-llvm-ad11bf54bf49eaabec29ff318e6de108b1e60b99.zip | |
[compiler-rt][mips] Fix a test for mips.
GCC 4.9.2 likes the specialize one of the memcpys in msan_interceptors.cc,
leading to test failure.
llvm-svn: 302561
| -rw-r--r-- | compiler-rt/test/msan/chained_origin_memcpy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/msan/chained_origin_memcpy.cc b/compiler-rt/test/msan/chained_origin_memcpy.cc index bfe50dfec3f..0c94f2b13f1 100644 --- a/compiler-rt/test/msan/chained_origin_memcpy.cc +++ b/compiler-rt/test/msan/chained_origin_memcpy.cc @@ -50,7 +50,7 @@ int main(int argc, char *argv[]) { // CHECK: Uninitialized value was stored to memory at // CHECK-FULL-STACK: {{#1 .* in fn_h.*chained_origin_memcpy.cc:}}[[@LINE-15]] -// CHECK-SHORT-STACK: {{#0 .* in __msan_memcpy .*msan_interceptors.cc:}} +// CHECK-SHORT-STACK: {{#0 .* in __msan_memcpy.*msan_interceptors.cc:}} // CHECK: Uninitialized value was stored to memory at // CHECK-FULL-STACK: {{#0 .* in fn_g.*chained_origin_memcpy.cc:}}[[@LINE-29]] |

