diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-09-06 11:08:12 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-09-06 11:08:12 +0000 |
| commit | 6985f3f67b1e505f98dd261667696d9c62703cf1 (patch) | |
| tree | 3a41386f0b52eec76a56be4f87215e89c116dcf8 /compiler-rt/lib | |
| parent | 16516b9b00f9bdc18ca0c71013d30bc1e299607e (diff) | |
| download | bcm5719-llvm-6985f3f67b1e505f98dd261667696d9c62703cf1.tar.gz bcm5719-llvm-6985f3f67b1e505f98dd261667696d9c62703cf1.zip | |
Fix compiler warning introduced in r190022
llvm-svn: 190137
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/asan/tests/asan_str_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_str_test.cc b/compiler-rt/lib/asan/tests/asan_str_test.cc index 34be0b50cf8..17bef55d3d0 100644 --- a/compiler-rt/lib/asan/tests/asan_str_test.cc +++ b/compiler-rt/lib/asan/tests/asan_str_test.cc @@ -62,7 +62,7 @@ TEST(AddressSanitizer, StrLenOOBTest) { } TEST(AddressSanitizer, WcsLenTest) { - EXPECT_EQ(0, wcslen(Ident(L""))); + EXPECT_EQ(0U, wcslen(Ident(L""))); size_t hello_len = 13; size_t hello_size = (hello_len + 1) * sizeof(wchar_t); EXPECT_EQ(hello_len, wcslen(Ident(L"Hello, World!"))); |

