diff options
author | Renato Golin <renato.golin@linaro.org> | 2014-10-10 10:26:14 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2014-10-10 10:26:14 +0000 |
commit | 1a8093c3a7997879702b0a4fb4920add444c1392 (patch) | |
tree | fb915b0b7ac4986f5459169493bf90d1bffd1fc3 /compiler-rt | |
parent | f9a2975417fe083f16d59ad73d5f10ad76df373b (diff) | |
download | bcm5719-llvm-1a8093c3a7997879702b0a4fb4920add444c1392.tar.gz bcm5719-llvm-1a8093c3a7997879702b0a4fb4920add444c1392.zip |
Disabling main() check on UBSAN, since the noreturn check is already made
llvm-svn: 219488
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/test/ubsan/TestCases/Misc/missing_return.cpp | 2 |
1 files changed, 0 insertions, 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 7b402807fd3..aa5492bd7d7 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]] } |