aboutsummaryrefslogtreecommitdiff
path: root/final/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp
diff options
context:
space:
mode:
Diffstat (limited to 'final/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp')
-rwxr-xr-xfinal/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/final/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp b/final/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp
new file mode 100755
index 00000000..864ac221
--- /dev/null
+++ b/final/ABI-Testsuite/test/s2_9/builtin_signed_char.xpp
@@ -0,0 +1,22 @@
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+// RUN: cxx_compiler -c cxx_rtti cxx_exceptions %s -o %t.o
+// RUN: linker %t.o -o %t%exeext
+// RUN: bindump %t.o| FileCheck %s
+
+// Test run-time library includes support for builtin type "signed char"
+
+signed char global_var = 'a';
+signed char const *global_ptr;
+
+// CHECK-DAG: _ZTIa
+void foo1() { throw global_var; }
+// CHECK-DAG: _ZTIPa
+void foo2() { throw &global_var; }
+// CHECK-DAG: _ZTIPKa
+void foo3() { throw global_ptr; }
+
+int main(int argc, char *argv[]) {
+ return 0;
+}