[compiler-rt] r219488 - Disabling main() check on UBSAN, since the noreturn check is already made
Renato Golin
renato.golin at linaro.org
Fri Oct 10 03:26:14 PDT 2014
Author: rengolin
Date: Fri Oct 10 05:26:14 2014
New Revision: 219488
URL: http://llvm.org/viewvc/llvm-project?rev=219488&view=rev
Log:
Disabling main() check on UBSAN, since the noreturn check is already made
Modified:
compiler-rt/trunk/test/ubsan/TestCases/Misc/missing_return.cpp
Modified: compiler-rt/trunk/test/ubsan/TestCases/Misc/missing_return.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/Misc/missing_return.cpp?rev=219488&r1=219487&r2=219488&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/Misc/missing_return.cpp (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/Misc/missing_return.cpp Fri Oct 10 05:26:14 2014
@@ -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]]
}
More information about the llvm-commits
mailing list