8 lines · c
1// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-cpu skylake-avx512 -O0 -emit-llvm -o - -Wall -Werror | FileCheck %s2// This test checks validity of inline assembly using curly brackets syntax3// for extended inline asm.4 5void test_curly_brackets(void) {6 //CHECK: %xmm1,%xmm0,%xmm1 {%k1}{z}7 asm("vpaddb\t %%xmm1,%%xmm0,%%xmm1 %{%%k1%}%{z%}\t":::);8}