summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/builtins-systemz-error.c
blob: 73431b0a320e496ced5d96c04b5b25d294f6c4b0 (plain)
1
2
3
4
5
6
7
8
9
// 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}}
}