brintos

brintos / llvm-project-archived public Read only

0
0
Text · 259 B · 402e607 Raw
8 lines · c
1// This test verifies that we produce min-legal-vector-width attributes2 3// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s4 5void __attribute((__min_vector_width__(128))) foo(void) {}6 7// CHECK: "min-legal-vector-width"="128"8