diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-04-27 08:39:32 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-04-27 08:39:32 +0000 |
| commit | f52c7c7abf0a64554a546bbda6a8ed35208d19f5 (patch) | |
| tree | c80d787d13cfd3a5e0cb940cf334a09451252f28 | |
| parent | 3c65833a518024790bd3fb19d815b0dd09c6d623 (diff) | |
| download | bcm5719-llvm-f52c7c7abf0a64554a546bbda6a8ed35208d19f5.tar.gz bcm5719-llvm-f52c7c7abf0a64554a546bbda6a8ed35208d19f5.zip | |
tsan: fix windows build
llvm-svn: 267681
| -rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_platform.h b/compiler-rt/lib/tsan/rtl/tsan_platform.h index c2b48715530..3d4abbbbef8 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_platform.h +++ b/compiler-rt/lib/tsan/rtl/tsan_platform.h @@ -297,7 +297,7 @@ struct Mapping { static const uptr kShadowEnd = 0x050000000000ull; static const uptr kAppMemBeg = 0x000000001000ull; static const uptr kAppMemEnd = 0x00e000000000ull; -} +}; #else # error "Unknown platform" |

