From 7a7004a9993d3715e741aaafecf90ad9d5af7cf9 Mon Sep 17 00:00:00 2001 From: Artem Dergachev Date: Tue, 2 Aug 2016 15:16:06 +0000 Subject: [PATCH] [analyzer] Hotfix for buildbot failure due to unspecified triple in r277449 If a target triple is not specified, the default host triple is used, which is not good for compiling inline assembler code. Patch by Raphael Isemann! llvm-svn: 277473 --- clang/test/Analysis/copypaste/asm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Analysis/copypaste/asm.cpp b/clang/test/Analysis/copypaste/asm.cpp index 61f0def..e93f119 100644 --- a/clang/test/Analysis/copypaste/asm.cpp +++ b/clang/test/Analysis/copypaste/asm.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -std=c++11 -analyzer-checker=alpha.clone.CloneChecker -verify %s +// RUN: %clang_cc1 -triple x86_64-unknown-linux -analyze -analyzer-checker=alpha.clone.CloneChecker -verify %s // expected-no-diagnostics -- 2.7.4