From: Sam McCall Date: Mon, 13 Jan 2020 14:58:49 +0000 (+0100) Subject: Add missing triples to tests in 0c29d3ff2233696f663ae34a8aeda23c750ac68f so they... X-Git-Tag: llvmorg-11-init~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b91e78a719065c67b33bf82b0cde3d4ecfe3b7d;p=platform%2Fupstream%2Fllvm.git Add missing triples to tests in 0c29d3ff2233696f663ae34a8aeda23c750ac68f so they target the right arch. --- diff --git a/llvm/test/CodeGen/X86/align-branch-boundary-default.ll b/llvm/test/CodeGen/X86/align-branch-boundary-default.ll index d611f39..d2b4433 100644 --- a/llvm/test/CodeGen/X86/align-branch-boundary-default.ll +++ b/llvm/test/CodeGen/X86/align-branch-boundary-default.ll @@ -1,4 +1,4 @@ -; RUN: llc -verify-machineinstrs -O3 -mcpu=skylake -filetype=obj < %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s +; RUN: llc -verify-machineinstrs -O3 -mtriple=x86_64-unknown-unknown -mcpu=skylake -filetype=obj < %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s ; TODO: At the moment, autopadding for SKX102 is not the default, but ; eventually we'd like ti to be for the integrated assembler (only). diff --git a/llvm/test/CodeGen/X86/align-branch-boundary-default.s b/llvm/test/CodeGen/X86/align-branch-boundary-default.s index b44f5b6..fef553d 100644 --- a/llvm/test/CodeGen/X86/align-branch-boundary-default.s +++ b/llvm/test/CodeGen/X86/align-branch-boundary-default.s @@ -1,4 +1,4 @@ -# RUN: llvm-mc -mcpu=skylake -filetype=obj < %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s +# RUN: llvm-mc -mtriple=x86_64-unknown-unknown -mcpu=skylake -filetype=obj < %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s # The textual assembler *can't* default to autopadding as there's no syntax # to selectively disable it just yet.