From 1a8093c3a7997879702b0a4fb4920add444c1392 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Fri, 10 Oct 2014 10:26:14 +0000 Subject: [PATCH] Disabling main() check on UBSAN, since the noreturn check is already made llvm-svn: 219488 --- compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp b/compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp index 7b402807fd38..aa5492bd7d74 100644 --- a/compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp +++ b/compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp @@ -13,6 +13,4 @@ int f() { int main(int, char **argv) { return f(); -// Disabled on Darwin, see above. -// CHECK-Linux-STACKTRACE: #1 {{.*}} in main{{.*}}missing_return.cpp:[[@LINE-2]] }