diff options
Diffstat (limited to 'test/CodeGen/builtins-systemz-error.c')
-rw-r--r-- | test/CodeGen/builtins-systemz-error.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/builtins-systemz-error.c b/test/CodeGen/builtins-systemz-error.c new file mode 100644 index 0000000..73431b0 --- /dev/null +++ b/test/CodeGen/builtins-systemz-error.c @@ -0,0 +1,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}} +} + |