[PATCH] D54295: [WIP, RISCV] Add inline asm constraint A for RISC-V

James Clarke via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 6 07:00:40 PST 2019


jrtc27 requested changes to this revision.
jrtc27 added inline comments.
This revision now requires changes to proceed.
Herald added a project: clang.


================
Comment at: test/CodeGen/riscv-inline-asm.c:32
+// CHECK-LABEL: define void @test_A(i32* %p)
+// CHECK: call void asm volatile "", "*A"(i32* %p)
+  asm volatile("" :: "A"(*p));
----------------
Should be `sideeffect`


Repository:
  rC Clang

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

https://reviews.llvm.org/D54295





More information about the cfe-commits mailing list