aboutsummaryrefslogtreecommitdiff
path: root/final/ABI-Testsuite/test/s2_9/builtin_long_long.xpp
blob: b65361383126fbe52faf4f3a48ea7c578e0cb25f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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;
}