r371710 - [WebAssembly] Add REQUIRES to test

David Zarzycki via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 11 23:50:33 PDT 2019


Author: davezarzycki
Date: Wed Sep 11 23:50:33 2019
New Revision: 371710

URL: http://llvm.org/viewvc/llvm-project?rev=371710&view=rev
Log:
[WebAssembly] Add REQUIRES to test

Modified:
    cfe/trunk/test/CodeGenCXX/wasm-eh.cpp

Modified: cfe/trunk/test/CodeGenCXX/wasm-eh.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/wasm-eh.cpp?rev=371710&r1=371709&r2=371710&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/wasm-eh.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/wasm-eh.cpp Wed Sep 11 23:50:33 2019
@@ -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;




More information about the cfe-commits mailing list