From b28179be109d69c663efdae2df15563ab3e9a531 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 2 Dec 2012 18:43:33 +0000 Subject: [ubsan] Replace "fatal error" with "runtime error". llvm-svn: 169112 --- compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp') diff --git a/compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp b/compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp index ef5c0046464..8d1e70d6ad4 100644 --- a/compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp +++ b/compiler-rt/lib/ubsan/lit_tests/Integer/mul-overflow.cpp @@ -9,6 +9,6 @@ int main() { (void)(uint16_t(0xffff) * int16_t(0x7fff)); (void)(uint16_t(0xffff) * uint16_t(0x8000)); - // CHECK: mul-overflow.cpp:13:27: fatal error: signed integer overflow: 65535 * 32769 cannot be represented in type 'int' + // CHECK: mul-overflow.cpp:13:27: runtime error: signed integer overflow: 65535 * 32769 cannot be represented in type 'int' (void)(uint16_t(0xffff) * uint16_t(0x8001)); } -- cgit v1.2.3