diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-05-08 20:32:14 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-05-08 20:32:14 +0000 |
commit | 469a74772a78c23294c8c7daa8a0c45bbd420714 (patch) | |
tree | a78b19fa1ea1f1b7cd99ca81e1fee3bbee6a6122 /clang/test/CodeGenCXX/throw-expressions.cpp | |
parent | ebb262f79c376a7b54b3db6a76f30cd46ade4c13 (diff) | |
download | bcm5719-llvm-469a74772a78c23294c8c7daa8a0c45bbd420714.tar.gz bcm5719-llvm-469a74772a78c23294c8c7daa8a0c45bbd420714.zip |
Add missing triple to unit test.
llvm-svn: 181465
Diffstat (limited to 'clang/test/CodeGenCXX/throw-expressions.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/throw-expressions.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/throw-expressions.cpp b/clang/test/CodeGenCXX/throw-expressions.cpp index 22d78410652..ba8a86881a6 100644 --- a/clang/test/CodeGenCXX/throw-expressions.cpp +++ b/clang/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() { |