[PATCH] D65550: [AArch64] Do not emit '#' before immediates in inline asm

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 19 15:10:02 PST 2019


efriedma added a comment.

The following two statements are equivalent:

  .ascii "a"
  .byte 97

It looks like the integrated assembler "translates" from the first to the second in inline asm, due to the way the MC layer APIs work.  Probably not intentional, but I don't think it's a problem.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65550/new/

https://reviews.llvm.org/D65550





More information about the llvm-commits mailing list