代码搜索:Because
找到约 10,000 项符合「Because」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2870963
c asm-extn1.c
// { dg-do assemble { target sparc-sun-* } }
// { dg-options "-S" }
// GROUPS passed asm-extension
// This used to crash because c_expand_asm_keyword didn't know what to
// do with this. The parser r
www.eeworm.com/read/366702/2878188
c 20020129-1.c
/* This testcase failed at -O2 on IA-64, because scheduling did not take
into account conditional execution when using cselib for alias
analysis. */
struct D { int d1; struct D *d2; };
struct
www.eeworm.com/read/366702/2879835
c 20001226-1.c
/* This does not assemble on m68hc11 because the function is larger
than 64K. */
/* { dg-do assemble } */
/* { dg-xfail-if "function larger than 64K" { m6811-*-* } { "*" } { "" } } */
/* { dg-xfai
www.eeworm.com/read/366702/2880103
c compound-literal-3.c
/* PR C/30265, invalid gimple was produced because we did not mark
the compound literal's decl early enough. */
int f(_Complex float *);
int g(_Complex float x)
{
return f(&(_Complex float){x+1
www.eeworm.com/read/366702/2883052
c pr21029.c
/* { dg-do run } */
/* { dg-options "-O2 -fwrapv" } */
/* PR tree-optimization/21029
f() used to get optimized to an infinite loop by tree-vrp, because
j is assumed to be non-negative. Even t
www.eeworm.com/read/366702/2883520
c a.17.1.c
/* { dg-do compile } */
void
a17_1_wrong ()
{
union
{
int n;
float x;
} u;
#pragma omp parallel
{
#pragma omp atomic
u.n++;
#pragma omp atomic
u.x += 1.0;
/* Incorrect because
www.eeworm.com/read/358128/3004990
test func_des_encrypt.test
-- source include/have_ssl.inc
# This test can't be in func_encrypt.test, because it requires
# --des-key-file to not be set.
#
# Bug #11643: des_encrypt() causes server to die
#
select des_encrypt(
www.eeworm.com/read/357083/3030844
h ipcbuf.h
#ifndef __i386_IPCBUF_H__
#define __i386_IPCBUF_H__
/*
* The ipc64_perm structure for i386 architecture.
* Note extra padding because this structure is passed back and forth
* between kernel and u
www.eeworm.com/read/357083/3030947
h a.out.h
#ifndef __CRIS_A_OUT_H__
#define __CRIS_A_OUT_H__
/* we don't support a.out binaries on Linux/CRIS anyway, so this is
* not really used but still needed because binfmt_elf.c for some reason
* wants
www.eeworm.com/read/354521/3077675
in makefile.in
#
# priv/ui/
#
# $Id: Makefile.in,v 1.3 2000/08/03 21:50:24 dallen Exp $
#
.SUFFIXES: .c .cpp
.cpp.o:
$(CCC) -c $(CCFLAGS) $<
# override default because we use C++ in this directory
DE