aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/builtins4.C
blob: 7118910a27fba65fbda6af30910b213f85a5f6a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Test whether this builtin minimally works in G++.
// Origin: Kaveh Ghazi Jan 16, 2001
// Copyright (C) 2001 Free Software Foundation.
//
// Special g++ Options: -O2

namespace std 
{
  extern "C" void abort (void);
  extern "C" int printf (const char *, ...);
}

int main ()
{
  using namespace std;
  
  printf ("hello world\n");
  printf ("\n");
  printf ("%s\n", "hello world");
  printf ("%c", '\n');
  std::printf ("hello world\n");
  std::printf ("\n");
  std::printf ("%s\n", "hello world");
  std::printf ("%c", '\n');
  ::__builtin_printf ("hello world\n");
  ::__builtin_printf ("\n");
  ::__builtin_printf ("%s\n", "hello world");
  ::__builtin_printf ("%c", '\n');
  
  return 0;
}

extern "C"
{
  static int ::printf (const char *, ...)
  {
    std::abort ();
  }
}