diff options
author | Anders Carlsson <andersca@mac.com> | 2011-02-19 19:23:03 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2011-02-19 19:23:03 +0000 |
commit | 479d6f51e33a95d955be7c62087b7fa375b37b54 (patch) | |
tree | 4eff875f09652bd1213f70930414bddf17d462b7 /clang/test/CodeGenCXX/throw-expressions.cpp | |
parent | 0cf82f6ad04d96ee795d8e829320daaf32581549 (diff) | |
download | bcm5719-llvm-479d6f51e33a95d955be7c62087b7fa375b37b54.tar.gz bcm5719-llvm-479d6f51e33a95d955be7c62087b7fa375b37b54.zip |
Pass -fexceptions to all tests that use try/catch/throw.
llvm-svn: 126037
Diffstat (limited to 'clang/test/CodeGenCXX/throw-expressions.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/throw-expressions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/throw-expressions.cpp b/clang/test/CodeGenCXX/throw-expressions.cpp index f41d35ec374..1d22ec05c37 100644 --- a/clang/test/CodeGenCXX/throw-expressions.cpp +++ b/clang/test/CodeGenCXX/throw-expressions.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm-only -verify %s -Wno-unreachable-code +// RUN: %clang_cc1 -fexceptions -emit-llvm-only -verify %s -Wno-unreachable-code int val = 42; int& test1() { |