mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-15 17:07:52 +00:00
bde073f537
The backend has been around for years, it's pretty ridiculous that we can't even use the preferred form for printing "MOV" aliases. Unfortunately, TableGen can't handle the complex predicates when printing so it's a bunch of nasty C++. Oh well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272865 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
185 B
ArmAsm
7 lines
185 B
ArmAsm
// RUN: llvm-mc -triple aarch64-none-linux-gnu < %s | FileCheck %s
|
|
|
|
// Test that a single slash is not mistaken as the start of comment.
|
|
|
|
//CHECK: mov x0, #16
|
|
movz x0, #(32 / 2)
|