代码搜索结果
找到约 4,295 项符合
G 的代码
trans.s
g = r4
.globl succ,iget
.globl trans
trans:
jsr pc,iget
mov r0,(g)+
jmp succ
72_all_sh-no-reorder-blocks.patch
--- g/gcc/config/sh/sh.h
+++ g/gcc/config/sh/sh.h
@@ -422,6 +422,10 @@
do { \
if (LEVEL) \
flag_omit_frame_pointer = -1; \
+ if (LEVEL
72_all_sh-no-reorder-blocks.patch
--- g/gcc/config/sh/sh.h
+++ g/gcc/config/sh/sh.h
@@ -422,6 +422,10 @@
do { \
if (LEVEL) \
flag_omit_frame_pointer = -1; \
+ if (LEVEL
72_all_sh-no-reorder-blocks.patch
--- g/gcc/config/sh/sh.h
+++ g/gcc/config/sh/sh.h
@@ -422,6 +422,10 @@
do { \
if (LEVEL) \
flag_omit_frame_pointer = -1; \
+ if (LEVEL
g++.exp
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003,
# 2004, 2005, 2007 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
#
g++-dg.exp
# Copyright (C) 1997, 1999, 2000, 2003, 2007 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 Lic
private1.c
// g++ should not complain about A having private [cd]tors.
class A
{
A();
~A();
public:
int dummy(); // needed to get bogus warning
static A* get_A ();
};
A* A::get_A()
{
static A a;
g++-bprob-1.c
/* Check that various C constructs (in C++) don't cause problems for
* profile-directed block ordering.
Most of this test is the same as bprob-1.c and gcov-4.c in
gcc.misc-tests. The "count"
g++-bprob-2.c
namespace {
int calc(int j)
{
if (j==0) return 0;
return calc(j-1)*j % 17;
}
}
int main(void)
{
return calc(25);
}
950906-1.c
g (int i)
{
}
f (int i)
{
g (0);
while ( ({ i--; }) )
g (0);
}
main ()
{
f (10);
exit (0);
}