代码搜索:contributed

找到约 10,000 项符合「contributed」的源代码

代码结果 10,000
www.eeworm.com/read/162614/5526181

f90 parens_1.f90

! PR 20894 ! { dg-do compile } ! Originally contributed by Joost VandeVondele INTEGER, POINTER :: I,J INTEGER :: K ALLOCATE(I) J=>(I) ! { dg-error "Pointer assignment target is neither TARGET nor PO
www.eeworm.com/read/162614/5526233

f90 non_module_public.f90

! { dg-do compile } ! PR20837 - A symbol may not be declared PUBLIC or PRIVATE outside a module. ! Contributed by Joost VandeVondele integer, parameter, public :: i=1 ! { dg-error "a
www.eeworm.com/read/162614/5526323

f90 past_eor.f90

! { dg-do run } ! Test of the fix to the bug triggered by NIST fm908.for. ! Contributed by Paul Thomas ! program past_eor character(len=82) :: buffer real
www.eeworm.com/read/162614/5526355

f90 equiv_constraint_6.f90

! { dg-do compile } ! PR16404 test 3 and PR20835 - Target cannot be equivalence object. ! Contributed by Joost VandeVondele REAL :: A REAL, TARGET :: B EQUIVALENCE(A,B) ! { dg-
www.eeworm.com/read/162614/5526495

f90 parens_2.f90

! PR 25048 ! { dg-do compile } ! Originally contributed by Joost VandeVondele INTEGER, POINTER :: I CALL S1((I)) ! { dg-error "Actual argument for .i. must be a pointer" } CONTAINS SUBROUTINE S1(I)
www.eeworm.com/read/162614/5526502

f90 module_blank_common.f90

! { dg-do run } ! ! This tests that blank common works in modules. PR23270 ! Contributed by Paul Thomas ! module global common a, b real a, b end module global program blan
www.eeworm.com/read/162614/5526539

f comma.f

! { dg-do run } ! PR25419 Default input with commas. ! Derived from example given in PR. ! Contributed by Jerry DeLisle stuff = 1 stuff2 = 2 write(11,'(a)')
www.eeworm.com/read/162614/5526561

f90 der_pointer_2.f90

! { dg-do compile } ! PR 15975, PR 16606 ! Pointers to derived types with initialized components ! ! Contributed by Erik Edelmann ! SUBROUTINE N TYPE T INTEGER :: I = 99
www.eeworm.com/read/162614/5526672

c 20030913-1.c

/* Assignments via pointers pointing to global variables were being killed by SSA-DCE. Test contributed by Paul Brook */ int glob; void fn2(int ** q) { *q = &glob; }
www.eeworm.com/read/162614/5526736

c 20030221-1.c

/* PR optimization/8613 */ /* Contributed by Glen Nakamura */ extern void abort (void); int main (void) { char buf[16] = "1234567890"; char *p = buf; *p++ = (char) __builtin_strlen (buf);