From: Artem Dergachev Date: Fri, 30 Mar 2018 21:22:35 +0000 (+0000) Subject: [analyzer] Fix test triple in missing-bind-temporary.cpp. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7408fe366bb18923fa360b069b4e4566203f34f;p=clang [analyzer] Fix test triple in missing-bind-temporary.cpp. Otherwise the default triple for x86-windows-msvc2015 auto-inserts __attribute__((thiscall)) to some calls. Fixes the respective buildbot. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328903 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/missing-bind-temporary.cpp b/test/Analysis/missing-bind-temporary.cpp index efa608bfad..010c42e0ff 100644 --- a/test/Analysis/missing-bind-temporary.cpp +++ b/test/Analysis/missing-bind-temporary.cpp @@ -1,6 +1,6 @@ -// RUN: %clang_analyze_cc1 -analyzer-checker=debug.DumpCFG %s > %t 2>&1 +// RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux -analyzer-checker=debug.DumpCFG %s > %t 2>&1 // RUN: FileCheck --input-file=%t %s -// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -std=c++14 -verify %s +// RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux -analyzer-checker=core,debug.ExprInspection -std=c++14 -verify %s void clang_analyzer_eval(bool);