xref: /llvm-project/clang/test/CodeGen/PowerPC/inline-asm-constraints-error.c (revision b6447260748086c0df484ec6609f126ae90e91ea)
1 // RUN: %clang_cc1 -emit-llvm-only -triple powerpc64-ibm-aix-xcoff -verify %s
2 // RUN: %clang_cc1 -emit-llvm-only -triple powerpc-ibm-aix-xcoff -verify %s
3 // This test case exist to test marking the 'a' inline assembly constraint as
4 // unsupported because powerpc previously marked it as supported.
foo(int arg)5 int foo(int arg){
6   asm goto ("bc 12,2,%l[TEST_LABEL]" : : "a"(&&TEST_LABEL) : : TEST_LABEL); //expected-error {{invalid input constraint 'a' in asm}}
7   return 0;
8 TEST_LABEL: return arg + 1;
9 }
10