From e811e6ce3251ad3d4528b125d1d86da8281e852e Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 27 Dec 2018 14:19:41 +0000 Subject: [PATCH] Fix build failure in test. --- Test/CXXException.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/Test/CXXException.cc b/Test/CXXException.cc index 96e9f11..3c2347d 100644 --- a/Test/CXXException.cc +++ b/Test/CXXException.cc @@ -5,7 +5,6 @@ extern "C" void throw_int() } extern "C" void throw_id(); -extern "C" int id_catchall; extern "C" int catchall() @@ -16,7 +15,6 @@ extern "C" int catchall() } catch(...) { - id_catchall = 1; throw; } __builtin_trap();