blob: 31527d81efdd678cc47f7390a6b040745b79b8d5 [file] [log] [blame]
// 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 "long double"
long double global_var = 123.456;
long double const *global_ptr;
// CHECK-DAG: _ZTIe
void foo1() { throw global_var; }
// CHECK-DAG: _ZTIPe
void foo2() { throw &global_var; }
// CHECK-DAG: _ZTIPKe
void foo3() { throw global_ptr; }
int main(int argc, char *argv[]) {
return 0;
}