summaryrefslogtreecommitdiff
path: root/test/ubsan
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2014-10-10 10:26:14 +0000
committerRenato Golin <renato.golin@linaro.org>2014-10-10 10:26:14 +0000
commit2a8106d803bdb24aece7311a4e332898dba0f9ad (patch)
treec2d58c9b79a83888b292b0d0e4fd0b69b2a169c2 /test/ubsan
parenta0ecd98a18576a45a41334f1e011fd7b766f2662 (diff)
downloadcompiler-rt-2a8106d803bdb24aece7311a4e332898dba0f9ad.tar.gz
Disabling main() check on UBSAN, since the noreturn check is already made
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@219488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ubsan')
-rw-r--r--test/ubsan/TestCases/Misc/missing_return.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ubsan/TestCases/Misc/missing_return.cpp b/test/ubsan/TestCases/Misc/missing_return.cpp
index 7b402807f..aa5492bd7 100644
--- a/test/ubsan/TestCases/Misc/missing_return.cpp
+++ b/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]]
}