diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-05-16 18:43:39 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-05-16 18:43:39 +0000 |
commit | f081e973301d3ddc1e39b146a0e3710180f2890c (patch) | |
tree | ea6254db7c6a5fedba1c8736879310516efe0b4f | |
parent | cc7311dd7ad892525bd72d8d4b67164061e2bb9e (diff) |
Merging r181465:
------------------------------------------------------------------------
r181465 | rsmith | 2013-05-08 13:32:14 -0700 (Wed, 08 May 2013) | 2 lines
Add missing triple to unit test.
------------------------------------------------------------------------
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_33@182037 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/throw-expressions.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGenCXX/throw-expressions.cpp b/test/CodeGenCXX/throw-expressions.cpp index 22d7841065..ba8a86881a 100644 --- a/test/CodeGenCXX/throw-expressions.cpp +++ b/test/CodeGenCXX/throw-expressions.cpp @@ -1,5 +1,4 @@ -// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -Wno-unreachable-code -Werror -emit-llvm -o - %s | FileCheck %s -// expected-no-diagnostics +// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -Wno-unreachable-code -Werror -triple x86_64-linux-gnu -emit-llvm -o - %s | FileCheck %s int val = 42; int& test1() { |