From: Richard Smith Date: Mon, 9 Jan 2017 01:10:14 +0000 (+0000) Subject: Fix test for targets whose preferred spelling for an 8-byte int is 'long long', not... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87fca9c11fafeff76edff178641a6c4a1cb597c2;p=clang Fix test for targets whose preferred spelling for an 8-byte int is 'long long', not 'long'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@291411 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/attr-mode-tmpl.cpp b/test/SemaCXX/attr-mode-tmpl.cpp index d8be70a030..d83bb39890 100644 --- a/test/SemaCXX/attr-mode-tmpl.cpp +++ b/test/SemaCXX/attr-mode-tmpl.cpp @@ -45,7 +45,7 @@ void CheckMachineMode() { // Check attributes on function parameters. template -void CheckParameters(T1 __attribute__((mode(SI))) paramSI, // expected-note{{ignored: substitution failure}} expected-note-re{{not viable: no known conversion from '{{.*}}' (vector of 4 'long' values) to 'EnumType' for 2nd argument}} +void CheckParameters(T1 __attribute__((mode(SI))) paramSI, // expected-note{{ignored: substitution failure}} expected-note-re{{not viable: no known conversion from '{{.*}}' (vector of 4 '{{.*}}' values) to 'EnumType' for 2nd argument}} T1 __attribute__((mode(V4DI))) paramV4DI, // expected-warning{{deprecated}} T2 __attribute__((mode(SF))) paramSF, T2 __attribute__((mode(V4DF))) paramV4DF) { // expected-warning{{deprecated}}