brintos

brintos / llvm-project-archived public Read only

0
0
Text · 348 B · 73431b0 Raw
10 lines · c
1// REQUIRES: systemz-registered-target2// RUN: %clang_cc1 -target-cpu zEC12 -triple s390x-unknown-unknown \3// RUN: -Wall -Wno-unused -Werror -fsyntax-only -verify %s4 5void test1(void) {6  __builtin_tabort (0);   // expected-error {{invalid transaction abort code}}7  __builtin_tabort (255); // expected-error {{invalid transaction abort code}}8}9 10