9 lines · c
1// RUN: %clang_cc1 -triple aarch64-- -target-feature +neon -target-feature +sve\2// RUN: -target-feature -sve -emit-llvm %s -o - | FileCheck %s3 4// Reproducer for bug where clang would reject always_inline for unrelated5// target features if they were disable with `-feature` on the command line.6// CHECK: @bar7__attribute__((always_inline)) __attribute__((target("neon"))) void foo() {}8void bar() { foo(); }9