xref: /llvm-project/clang/test/Sema/aarch64-tme-errors.c (revision 9df71899bd5dbbaf0640c74cc82a6330dc7760cf)
1 // RUN: %clang_cc1 -triple aarch64 -verify %s
2 
3 #include "arm_acle.h"
4 
test_no_tme_funcs(void)5 void test_no_tme_funcs(void) {
6   __tstart();         // expected-error{{call to undeclared function '__tstart'; ISO C99 and later do not support implicit function declarations}}
7   __builtin_tstart(); // expected-error{{use of unknown builtin '__builtin_tstart'}}
8 }
9