[PATCH] D75690: [SVE][Inline-Asm] Add constraints for SVE ACLE types
Eli Friedman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 5 10:23:04 PST 2020
efriedma added inline comments.
================
Comment at: clang/lib/Basic/Targets/AArch64.h:95
+ case 'U': // Three-character constraint; add "@3" hint for later parsing.
+ R = std::string("@3") + std::string(Constraint, 3);
+ Constraint += 2;
----------------
Is "@3" some LLVM thing? I don't think I've seen it before.
================
Comment at: clang/test/CodeGen/aarch64-sve-inline-asm-datatypes.c:2
+// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns \
+// RUN: -target-feature +neon -S -O1 -o - %s | FileCheck %s
+
----------------
`REQUIRES: aarch64-registered-target` is necessary for any test that isn't using -emit-llvm.
Generally, I'd prefer tests using -emit-llvm so we can independently verify that the IR is what we expect, vs. the backend processing the IR the way we expect.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75690/new/
https://reviews.llvm.org/D75690
More information about the cfe-commits
mailing list