blob: 05d956dcb3dbf487cbdbf01f5d568e507f2d42a8 [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 "unsigned int"
unsigned int global_var = 5;
unsigned int const *global_ptr;
// CHECK-DAG: _ZTIj
void foo1() { throw global_var; }
// CHECK-DAG: _ZTIPj
void foo2() { throw &global_var; }
// CHECK-DAG: _ZTIPKj
void foo3() { throw global_ptr; }
int main(int argc, char *argv[]) {
return 0;
}