aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/rmi/server/ServerRef.java
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2010-12-17 19:11:52 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2010-12-17 11:11:52 -0800
commit0d54d6cae8c1a6974c5acebe28f748b0c13d54d6 (patch)
tree92a67cb266647575f86b488979770b15ab2e8c7e /libjava/classpath/java/rmi/server/ServerRef.java
parent78feaa1f335d0f55eaa80d2cc2ca6925e1fe0d16 (diff)
downloadgcc-0d54d6cae8c1a6974c5acebe28f748b0c13d54d6.zip
gcc-0d54d6cae8c1a6974c5acebe28f748b0c13d54d6.tar.gz
gcc-0d54d6cae8c1a6974c5acebe28f748b0c13d54d6.tar.bz2
Replace "BB [%i]" with "[bb %i]" in vzeroupper RTL dump.
2010-12-17 H.J. Lu <hongjiu.lu@intel.com> * config/i386/i386.c (move_or_delete_vzeroupper_2): Replace "BB [%i]" with "[bb %i]" in dump. (move_or_delete_vzeroupper_1): Likewise. (rescan_move_or_delete_vzeroupper): Likewise. Always dump upper 128bit state at exit. From-SVN: r167996
Diffstat (limited to 'libjava/classpath/java/rmi/server/ServerRef.java')
0 files changed, 0 insertions, 0 deletions
db-opt-code-debug Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.dwarf2/dw2-cp-infcall-ref-static-main.c
blob: 8cbd81b9c7a1f9fac31d6a29d276e5018fe7613b (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
40
41
42
43
44
45
46
47
48
49
50
51
/* This testcase is part of GDB, the GNU debugger.

   Copyright 2010-2019 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

/* class C
     {
     public:
       static C s;
     };
   C C::s;
   C f()
   {
     return C::s;
   }  */

asm (".globl cu_text_start");
asm ("cu_text_start:");

asm (".globl f_start");
asm ("f_start:");

void
f (void)
{
}

asm (".globl f_end");
asm ("f_end:");

int
main (void)
{
  f ();
  return 0;
}

asm (".globl cu_text_end");
asm ("cu_text_end:");