blob: 314926a2658c0a5040fcd3520e9fcf3f60f7308b [file] [log] [blame]
// This file is distributed under the University of Illinois Open Source License.
// See LICENSE.TXT for details.
// 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 "double"
double global_var = 123.456;
double const *global_ptr;
// CHECK-DAG: _ZTId
void foo1() { throw global_var; }
// CHECK-DAG: _ZTIPd
void foo2() { throw &global_var; }
// CHECK-DAG: _ZTIPKd
void foo3() { throw global_ptr; }
int main(int argc, char *argv[]) {
return 0;
}