tsan: fix Go build on Windows

Fix similar to https://reviews.llvm.org/D77111 but fow Windows.

gotsan.cpp:14071:16: error: missing terminating ' character [-Werror]
case 0b10'010:  // c.lwsp (rd != x0)
         ^

Reported-by: Keith Randall
This commit is contained in:
Dmitry Vyukov 2020-04-01 10:36:29 +02:00
parent e20cac3650
commit e2d6023250
1 changed files with 1 additions and 1 deletions

View File

@ -59,4 +59,4 @@ gcc ^
-DSANITIZER_DEBUG=0 ^
-O3 ^
-fomit-frame-pointer ^
-std=c++11
-std=c++14