代码搜索:preprocessor
找到约 5,886 项符合「preprocessor」的源代码
代码结果 5,886
www.eeworm.com/read/256872/11966999
c scpp.c
/*
* scpp.c - main processing for the selective C preprocessor, scpp.
*
* Copyright (c) 1985 by
* Tektronix, Incorporated Beaverton, Oregon 97077
* All rights reserved.
*
* Permission is hereby
www.eeworm.com/read/256872/11967007
h scpp.h
/*
* scpp.h - common declarations for the selective C preprocessor, scpp.
*
* Copyright (c) 1985 by
* Tektronix, Incorporated Beaverton, Oregon 97077
* All rights reserved.
*
* Permission is h
www.eeworm.com/read/256872/11967022
y parse.y
/*
* parse.y - #if parser for the selective C preprocessor, scpp.
*
* Copyright (c) 1985 by
* Tektronix, Incorporated Beaverton, Oregon 97077
* All rights reserved.
*
* Permission is hereby gra
www.eeworm.com/read/153764/12008481
grammar
-- This file is input for the preprocessor 'mungegrammar', which uses it
-- to generate scangen.in, fmq.in, tokens.h, and actions.cc.
-- Keep in mind that mungegrammar is a pre-processor, not a compi
www.eeworm.com/read/470917/1439759
h wordsize.h
/* Determine the wordsize from the preprocessor defines. */
#if defined __powerpc64__
# define __WORDSIZE 64
# define __WORDSIZE_COMPAT32 1
#else
# define __WORDSIZE 32
#endif
www.eeworm.com/read/470917/1439956
h wordsize.h
/* Determine the wordsize from the preprocessor defines. */
#if defined __powerpc64__
# define __WORDSIZE 64
# define __WORDSIZE_COMPAT32 1
#else
# define __WORDSIZE 32
#endif
www.eeworm.com/read/470720/1452220
c pragma-2.c
/* Verify that preprocessor does not insert redundant newlines
after #pragma, also check this for #include, #define and #undef */
/* { dg-do compile } */
/* { dg-options "-dD" } */
#include
www.eeworm.com/read/470720/1452300
c literals-1.c
/* Test that (what looks like) comments are not recognized in literals
and that quotes within quotes do not confused the preprocessor. */
/* { dg-do run } */
extern void abort (void);
int main
www.eeworm.com/read/470720/1452473
c pragma-1.c
/* Verify that preprocessor does not insert redundant newlines
after #pragma */
/* { dg-do compile } */
int
main ()
{
#pragma unknown
{
error;
/* { dg-error "undeclared" "undeclared-variabl
www.eeworm.com/read/470720/1452496
c escape-1.c
/* Copyright (C) 2001 Free Software Foundation, Inc. */
/* { dg-do compile } */
/* This tests various diagnostics about escape sequences, for both
the preprocessor and the compiler.
Neil Boo