1## Test that we default to --mcpu=future and disassemble all known instructions. 2## The default is different from producers (e.g. Clang). 3# RUN: llvm-mc -triple=powerpc64le -filetype=obj %s -o %t 4# RUN: llvm-objdump -d --no-show-raw-insn %t | FileCheck %s --check-prefixes=CHECK,FUTURE 5# RUN: llvm-objdump -d --no-show-raw-insn --mcpu=future %t | FileCheck %s --check-prefixes=CHECK,FUTURE 6# RUN: llvm-objdump -d --no-show-raw-insn --mcpu=pwr9 %t | FileCheck %s --check-prefixes=CHECK,UNKNOWN 7 8# RUN: llvm-mc -triple=powerpc -filetype=obj %s -o %t 9# RUN: llvm-objdump -d --no-show-raw-insn %t | FileCheck %s --check-prefixes=CHECK,FUTURE 10 11# CHECK-LABEL: <_start>: 12# FUTURE-NEXT: pld 3, 0(0), 1 13# UNKNOWN-COUNT-2: <unknown> 14# CHECK-EMPTY: 15 16.globl _start 17_start: 18 pld 3, 0(0), 1 19