blob: b65361383126fbe52faf4f3a48ea7c578e0cb25f [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 "long long"
long long global_var = 5;
long long const *global_ptr;
// CHECK-DAG: _ZTIx
void foo1() { throw global_var; }
// CHECK-DAG: _ZTIPx
void foo2() { throw &global_var; }
// CHECK-DAG: _ZTIPKx
void foo3() { throw global_ptr; }
int main(int argc, char *argv[]) {
return 0;
}