diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-10-16 23:00:18 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-10-16 23:00:18 +0000 |
commit | e04c253a94c880320645d6d3c51977af4099323f (patch) | |
tree | ef8f4e4e1f63a86837adadc3b99ad235469aea40 | |
parent | 684d19d8795980b12183d50158c24e426b968879 (diff) | |
download | bcm5719-llvm-e04c253a94c880320645d6d3c51977af4099323f.tar.gz bcm5719-llvm-e04c253a94c880320645d6d3c51977af4099323f.zip |
clang/test/CXX/conv/conv.fctptr/p1.cpp: Appease for targeting i686-win32.
error: 'error' diagnostics seen but not expected:
File clang\test\CXX\conv\conv.fctptr\p1.cpp Line 16: assigning to 'void (S::*)() __attribute__((thiscall)) noexcept' from incompatible type 'void (S::*)() __attribute__((thiscall))': different exception specifications
llvm-svn: 284352
-rw-r--r-- | clang/test/CXX/conv/conv.fctptr/p1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/conv/conv.fctptr/p1.cpp b/clang/test/CXX/conv/conv.fctptr/p1.cpp index 810c7f5e803..6383a025e49 100644 --- a/clang/test/CXX/conv/conv.fctptr/p1.cpp +++ b/clang/test/CXX/conv/conv.fctptr/p1.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -std=c++1z -verify %s +// RUN: %clang_cc1 -std=c++1z -verify %s -triple x86_64-unknown-unknown struct S; |