You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
348 B

// REQUIRES: systemz-registered-target
// RUN: %clang_cc1 -target-cpu zEC12 -triple s390x-unknown-unknown \
// RUN: -Wall -Wno-unused -Werror -fsyntax-only -verify %s
void test1(void) {
__builtin_tabort (0); // expected-error {{invalid transaction abort code}}
__builtin_tabort (255); // expected-error {{invalid transaction abort code}}
}