r371712 - [WebAssembly] Delete duplicate REQUIRES line

Heejin Ahn via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 11 23:56:17 PDT 2019


Author: aheejin
Date: Wed Sep 11 23:56:17 2019
New Revision: 371712

URL: http://llvm.org/viewvc/llvm-project?rev=371712&view=rev
Log:
[WebAssembly] Delete duplicate REQUIRES line

r371710 and r371711 committed the same line, so this deletes one of
them.

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=371712&r1=371711&r2=371712&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/wasm-eh.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/wasm-eh.cpp Wed Sep 11 23:56:17 2019
@@ -2,7 +2,6 @@
 // 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