mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 23:23:38 -04:00
ee325b9e96
The previous names were both misleading (the MachineLegalizer actually contained the info tables) and inconsistent with the selector & translator (in having a "Machine") prefix. This should make everything sensible again. The only functional change is the name of a couple of command-line options. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284287 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
299 B
LLVM
13 lines
299 B
LLVM
; RUN: llc -mtriple=arm64-macho -o - %s | FileCheck %s
|
|
; RUN: llc -mtriple=arm64-macho -filetype=obj -o %t %s
|
|
; RUN: llvm-objdump -triple=arm64-macho -d %t | FileCheck --check-prefix=CHECK-OBJ %s
|
|
|
|
define void @foo() {
|
|
; CHECK-LABEL: _foo:
|
|
; CHECK: ret
|
|
|
|
; CHECK-OBJ: 0: c0 03 5f d6 ret
|
|
|
|
ret void
|
|
}
|