From: David Zarzycki Date: Thu, 12 Sep 2019 06:50:33 +0000 (+0000) Subject: [WebAssembly] Add REQUIRES to test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03e9a5977495662703ff58ab8f26e07b8c0d1254;p=clang [WebAssembly] Add REQUIRES to test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@371710 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/wasm-eh.cpp b/test/CodeGenCXX/wasm-eh.cpp index 6005701f23..af60d636ab 100644 --- a/test/CodeGenCXX/wasm-eh.cpp +++ b/test/CodeGenCXX/wasm-eh.cpp @@ -1,6 +1,7 @@ // RUN: %clang_cc1 %s -triple wasm32-unknown-unknown -fms-extensions -fexceptions -fcxx-exceptions -fwasm-exceptions -target-feature +exception-handling -emit-llvm -o - -std=c++11 | FileCheck %s // RUN: %clang_cc1 %s -triple wasm64-unknown-unknown -fms-extensions -fexceptions -fcxx-exceptions -fwasm-exceptions -target-feature +exception-handling -emit-llvm -o - -std=c++11 | FileCheck %s // RUN: %clang_cc1 %s -triple wasm32-unknown-unknown -fms-extensions -fexceptions -fcxx-exceptions -fwasm-exceptions -target-feature +exception-handling -S -o - -std=c++11 | FileCheck %s --check-prefix=ASSEMBLY +// REQUIRES: webassembly-registered-target void may_throw(); void dont_throw() noexcept;