代码搜索:preprocessor
找到约 5,886 项符合「preprocessor」的源代码
代码结果 5,886
www.eeworm.com/read/470693/1455959
h elf.h
/* Target OS preprocessor built-ins. */
#define TARGET_OS_CPP_BUILTINS() \
do \
{ \
builtin_define ("__ELF__"); \
} \
while (0)
/* Undefine some macros defined in
www.eeworm.com/read/470693/1464166
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/470693/1464246
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/470693/1464419
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/470693/1464442
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
www.eeworm.com/read/240162/4589913
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/240162/4589996
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/240162/4590178
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/240162/4590203
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
www.eeworm.com/read/237551/4624045
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