From: Jinsong Ji Date: Fri, 30 Aug 2019 02:57:33 +0000 (+0000) Subject: [PowerPC][NFC] Use -mtriple in RUN line, remove target triple in tls.ll X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd438c183df8d1d8584e33ebb8294ec24d34511c;p=llvm [PowerPC][NFC] Use -mtriple in RUN line, remove target triple in tls.ll To avoid confusion, especially when -mtriple are also added for PPC32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370427 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/tls.ll b/test/CodeGen/PowerPC/tls.ll index 1d6b22e3f8f..18ca23b5e81 100644 --- a/test/CodeGen/PowerPC/tls.ll +++ b/test/CodeGen/PowerPC/tls.ll @@ -1,10 +1,10 @@ -; RUN: llc -relocation-model=static -verify-machineinstrs -O0 < %s -mcpu=ppc64 | FileCheck -check-prefix=OPT0 %s -; RUN: llc -relocation-model=static -verify-machineinstrs -O1 < %s -mcpu=ppc64 | FileCheck -check-prefix=OPT1 %s +; RUN: llc -relocation-model=static -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu \ +; RUN: -O0 < %s -mcpu=ppc64 | FileCheck -check-prefix=OPT0 %s +; RUN: llc -relocation-model=static -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu \ +; RUN: -O1 < %s -mcpu=ppc64 | FileCheck -check-prefix=OPT1 %s ; RUN: llc -verify-machineinstrs -O0 < %s -mtriple=ppc32-- -mcpu=ppc | FileCheck -check-prefix=OPT0-PPC32 %s ; RUN: llc -relocation-model=pic -verify-machineinstrs -O0 < %s -mtriple=ppc32-- -mcpu=ppc | FileCheck -check-prefix=OPT0-PPC32-PIC %s -target triple = "powerpc64-unknown-linux-gnu" - @a = thread_local global i32 0, align 4 ;OPT0-LABEL: localexec: