1 // RUN: %clang_cc1 -triple aarch64-eabi -verify %s
2 
3 #include "arm_acle.h"
4 
test_no_tme_funcs()5 void test_no_tme_funcs() {
6   __tstart();         // expected-warning{{implicit declaration of function '__tstart'}}
7   __builtin_tstart(); // expected-error{{use of unknown builtin '__builtin_tstart'}}
8 }
9