diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-09-12 06:56:17 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2019-09-12 06:56:17 +0000 |
commit | e2909eb05f8bbcbd538c79f376e4acfa53c8082f (patch) | |
tree | b0bc7260c0c5db10798547b12c00b4198a167ea5 /test | |
parent | 2e91dbb2bc0dfc946f5f272c37ed17bb73ce6aa8 (diff) | |
download | clang-e2909eb05f8bbcbd538c79f376e4acfa53c8082f.tar.gz |
[WebAssembly] Delete duplicate REQUIRES line
r371710 and r371711 committed the same line, so this deletes one of
them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@371712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGenCXX/wasm-eh.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/CodeGenCXX/wasm-eh.cpp b/test/CodeGenCXX/wasm-eh.cpp index 9425177df0..2d56c6bd0c 100644 --- a/test/CodeGenCXX/wasm-eh.cpp +++ b/test/CodeGenCXX/wasm-eh.cpp @@ -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; |