This relands commits e43924a75145d2f9e722f74b673145c3e62bfd07, a43f36142c501e2d3f4797ef938db4e0c5e0eeec, bf94eac6a3f7c5cd8941956d44c15524fa3751bd with MSan buildbot https://lab.llvm.org/buildbot/#/builders/5/builds/30139 use-of-uninitialized-value errors fixed. Differential Revision: https://reviews.llvm.org/D127812
9 lines
354 B
C
9 lines
354 B
C
// RUN: %clang_cc1 -triple aarch64-linux-gnu -ast-dump %s | FileCheck %s
|
|
|
|
int __attribute__((target_version("sve2-bitperm + sha2"))) foov(void) { return 1; }
|
|
int __attribute__((target_clones(" lse + fp + sha3 "))) fooc(void) { return 2; }
|
|
// CHECK: TargetVersionAttr
|
|
// CHECK: sve2-bitperm + sha2
|
|
// CHECK: TargetClonesAttr
|
|
// CHECK: fp+lse+sha3 default
|