From: Justin Bogner Date: Wed, 20 May 2015 16:25:35 +0000 (+0000) Subject: InstrProf: Change this triple back to %itanium_abi_triple X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a7bb3c6dbb127c006460290f702f93299eadc24;p=clang InstrProf: Change this triple back to %itanium_abi_triple In my rush to fix the linux bots in r237805, I accidentally committed a change to the triple. Revert that part. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237806 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Profile/cxx-virtual-destructor-calls.cpp b/test/Profile/cxx-virtual-destructor-calls.cpp index 532021d577..35975c2853 100644 --- a/test/Profile/cxx-virtual-destructor-calls.cpp +++ b/test/Profile/cxx-virtual-destructor-calls.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -main-file-name cxx-virtual-destructor-calls.cpp %s -o - -fprofile-instr-generate | FileCheck %s +// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -main-file-name cxx-virtual-destructor-calls.cpp %s -o - -fprofile-instr-generate | FileCheck %s struct Member { ~Member();