aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/builtins-systemz-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/builtins-systemz-error.c')
-rw-r--r--test/CodeGen/builtins-systemz-error.c9
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 000000000000..73431b0a320e
--- /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}}
+}
+