mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ed0233ea44
Enable an ELFObjectFile to read the its arm build attributes to produce a target triple with a specific ARM architecture. llvm-objdump now uses this functionality to automatically produce a more accurate target. Differential Revision: https://reviews.llvm.org/D28769 llvm-svn: 292366
10 lines
204 B
ArmAsm
10 lines
204 B
ArmAsm
@ RUN: llvm-mc < %s -triple armv6-elf -filetype=obj | llvm-objdump -triple=arm -d - | FileCheck %s
|
|
|
|
.arch armv6
|
|
|
|
umaal:
|
|
umaal r0, r1, r2, r3
|
|
|
|
@ CHECK-LABEL:umaal
|
|
@ CHECK: 92 03 41 e0 umaal r0, r1, r2, r3
|