From 872cb7086cb31ab4348de50e763507e73d402602 Mon Sep 17 00:00:00 2001 From: Kuba Mracek Date: Mon, 10 Jul 2017 15:19:14 +0000 Subject: [PATCH] Fixup whitespace. llvm-svn: 307538 --- compiler-rt/test/tsan/deep_stack1.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/tsan/deep_stack1.cc b/compiler-rt/test/tsan/deep_stack1.cc index e5640832299e..44dd0c443920 100644 --- a/compiler-rt/test/tsan/deep_stack1.cc +++ b/compiler-rt/test/tsan/deep_stack1.cc @@ -26,7 +26,7 @@ void *Thread(void *p) { static size_t RoundUp(size_t n, size_t to) { return ((n + to - 1) / to) * to; -} +} int main() { barrier_init(&barrier, 2);