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