/external/clang/test/CodeGenCXX/ |
D | pragma-visibility.cpp | 3 #pragma GCC visibility push(hidden) 7 #pragma GCC visibility pop 11 #pragma GCC visibility push(hidden) 17 #pragma GCC visibility pop 19 #pragma GCC visibility push(hidden) 23 #pragma GCC visibility pop 27 #pragma GCC visibility push(hidden) 30 #pragma GCC visibility pop 34 #pragma GCC visibility push(hidden) 38 #pragma GCC visibility pop [all …]
|
/external/clang/test/SemaCXX/ |
D | pragma-visibility.cpp | 4 #pragma GCC visibility pop // expected-error{{#pragma visibility pop with no matching #pragma visib… 9 #pragma GCC visibility push(protected) // expected-error{{#pragma visibility push with no matching … 12 #pragma GCC visibility pop // expected-error{{#pragma visibility pop with no matching #pragma visib… 16 #pragma GCC visibility push(protected) 17 #pragma GCC visibility pop 21 #pragma GCC visibility push(protected) in f() 22 #pragma GCC visibility pop in f() 26 #pragma GCC visibility push(hidden) 29 #pragma GCC visibility pop
|
/external/llvm/test/CodeGen/X86/ |
D | dllexport.ll | 4 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s 6 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s 111 ; CHECK-GCC-NOT: not_exported 112 ; CHECK-GCC: -export:f1 113 ; CHECK-GCC-SAME: -export:f2 114 ; CHECK-GCC-SAME: -export:stdfun@0 115 ; CHECK-GCC-SAME: -export:@fastfun@0 116 ; CHECK-GCC-SAME: -export:thisfun 117 ; CHECK-GCC-SAME: -export:lnk1 118 ; CHECK-GCC-SAME: -export:lnk2 [all …]
|
/external/clang/test/Preprocessor/ |
D | pragma_diagnostic.c | 7 #pragma GCC diagnostic warning "-Wundef" 12 #pragma GCC diagnostic ignored "-Wun" "def" 17 #pragma GCC diagnostic error "-Wundef" 24 #pragma GCC diagnostic foo "-Wundef" // expected-warning {{pragma diagnostic expected 'error', 'wa… 26 #pragma GCC diagnostic error 42 // expected-error {{expected string literal in pragma diagnostic}} 28 #pragma GCC diagnostic error "-Wundef" 42 // expected-warning {{unexpected token in pragma diagnos… 29 #pragma GCC diagnostic error "invalid-name" // expected-warning {{pragma diagnostic expected optio… 31 #pragma GCC diagnostic error "-Winvalid-name" // expected-warning {{unknown warning group '-Winval…
|
D | pragma_diagnostic_output.c | 3 #pragma GCC diagnostic warning "-Wall" 5 #pragma GCC diagnostic ignored "-Wall" 7 #pragma GCC diagnostic error "-Wall" 9 #pragma GCC diagnostic fatal "-Wall" 11 #pragma GCC diagnostic push 13 #pragma GCC diagnostic pop
|
D | pragma_poison.c | 3 #pragma GCC poison rindex 15 #pragma GCC poison rindex2 18 #pragma GCC poison rindex2
|
/external/clang/test/Parser/ |
D | pragma-visibility.c | 3 #pragma GCC visibility foo // expected-warning{{expected identifier in '#pragma visibility' - ignor… 4 #pragma GCC visibility pop foo // expected-warning{{extra tokens at end of '#pragma visibility' - i… 5 #pragma GCC visibility push // expected-warning{{missing '(' after '#pragma visibility'}} 6 #pragma GCC visibility push( // expected-warning{{expected identifier in '#pragma visibility' - ign… 7 #pragma GCC visibility push(hidden // expected-warning{{missing ')' after '#pragma visibility' - ig… 8 #pragma GCC visibility push(hidden) 9 #pragma GCC visibility pop
|
/external/clang/test/Lexer/ |
D | pragma-message.c | 21 #pragma GCC warning(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! … 22 #pragma GCC warning ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts t… 24 #pragma GCC error(":O I'm a message! " STRING(__LINE__)) // expected-error {{:O I'm a message! 24}} 25 #pragma GCC error ":O gcc accepts this! " STRING(__LINE__) // expected-error {{:O gcc accepts this!… 27 #define COMPILE_ERROR(x) _Pragma(STRING2(GCC error(x))) 31 #pragma GCC warning("" // expected-error {{pragma warning requires parenthesized string}} 32 #pragma GCC error(1) // expected-error {{expected string literal in pragma error}}
|
D | pragma-message2.c | 9 #pragma GCC warning "\"" "te" "st" "\"" // expected-warning {{"test"}} 12 #pragma GCC warning("\"" "te" "st" "\"") // expected-warning {{"test"}} 15 #pragma GCC error "" "[ ]" "" // expected-error {{[ ]}} 18 #pragma GCC error("" "[ ]" "") // expected-error {{[ ]}}
|
/external/clang/test/Misc/ |
D | backend-stack-frame-diagnostics.cpp | 38 #pragma GCC diagnostic push 39 #pragma GCC diagnostic ignored "-Wframe-larger-than=" 44 #pragma GCC diagnostic pop 46 #pragma GCC diagnostic push 50 #pragma GCC diagnostic ignored "-Wframe-larger-than" 51 #pragma GCC diagnostic pop
|
/external/clang/include/clang/Basic/ |
D | ObjCRuntime.h | 50 GCC, enumerator 83 case GCC: return false; in isNonFragile() 124 case GCC: in isGNUFamily() 148 case GCC: return false; in allowsARC() 167 case GCC: return false; in hasNativeARC() 217 case GCC: return true; in hasSubscripting() 236 case GCC: in allowsPointerArithmetic() 263 case GCC: return false; in hasTerminate() 277 case GCC: return true; in hasWeakClassImport() 291 case GCC: return true; in hasUnwindExceptions()
|
D | Attr.td | 209 // The GCC spelling implies GNU<name, "GNU"> and CXX11<"gnu", name> and also 210 // sets KnownToGCC to 1. This spelling should be used for any GCC-compatible 212 class GCC<string name> : Spelling<name, "GCC"> { 359 let Spellings = [GCC<"alias">]; 367 let Spellings = [GCC<"aligned">, Declspec<"align">, Keyword<"alignas">, 371 let Accessors = [Accessor<"isGNU", [GCC<"aligned">]>, 405 let Spellings = [GCC<"always_inline">, Keyword<"__forceinline">]; 411 let Spellings = [GCC<"tls_model">]; 491 let Spellings = [GCC<"cdecl">, Keyword<"__cdecl">, Keyword<"_cdecl">]; 534 let Spellings = [GCC<"cleanup">]; [all …]
|
/external/clang/test/CodeGen/ |
D | pragma-visibility.c | 3 #pragma GCC visibility push(hidden) 8 #pragma GCC visibility pop 12 #pragma GCC visibility push(hidden) 16 #pragma GCC visibility pop 18 #pragma GCC visibility push(hidden)
|
/external/eigen/doc/ |
D | WrongStackAlignment.dox | 5 <h4>It appears that this was a GCC bug that has been fixed in GCC 4.5. 6 If you hit this issue, please upgrade to GCC 4.5 and report to us, so we can update this page.</h4> 8 This is an issue that, so far, we met only with GCC on Windows: for instance, MinGW and TDM-GCC. 20 GCC assumes that the stack is already 16-byte-aligned so that the object \a q will be created at a … 22 …the stack is only guaranteed to have 4-byte alignment. Indeed, even though GCC takes care of align… 35 …tml#Function-Attributes">this GCC documentation</a> to understand what this does. Of course this s… 40 …on is to edit your project so that when compiling with GCC on Windows, you pass this option to GCC: 44 Explanation: this tells GCC that the stack is only required to be aligned to 2^2=4 bytes, so that G…
|
/external/skia/infra/branch-config/ |
D | cq.cfg | 29 builders { name: "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot" } 30 builders { name: "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot" } 31 builders { name: "Test-Ubuntu-GCC-ShuttleA-GPU-GTX660-x86_64-Release-Trybot" } 38 builders { name: "Build-Ubuntu-GCC-Arm64-Debug-Android-Trybot" } 39 builders { name: "Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot" } 40 builders { name: "Build-Ubuntu-GCC-Mips-Debug-Android-Trybot" } 41 builders { name: "Build-Ubuntu-GCC-x86_64-Release-Trybot" }
|
/external/bison/m4/ |
D | extern-inline.m4 | 15 It suppresses GCC's bogus "no previous prototype for 'FOO'" diagnostic, 33 /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ 49 _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") 52 _Pragma ("GCC diagnostic push") \ 53 _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ 54 _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ 57 _Pragma ("GCC diagnostic pop")
|
/external/v8/build/config/ |
D | mips.gni | 20 # "hard": sets the GCC -mhard-float option. 21 # "soft": sets the GCC -msoft-float option. 25 # "fp32": sets the GCC -mfp32 option. 26 # "fp64": sets the GCC -mfp64 option. 27 # "fpxx": sets the GCC -mfpxx option.
|
/external/libcxxabi/src/ |
D | cxa_exception.hpp | 23 #pragma GCC visibility push(hidden) 112 #pragma GCC visibility pop 113 #pragma GCC visibility push(default) 121 #pragma GCC visibility pop
|
/external/ImageMagick/Magick++/ |
D | INSTALL | 35 ("Solaris 2.6, 7, & 8) SPARC GCC 3.0.4 40 FreeBSD 4.0 Intel Pentium II GCC 2.95 47 Windows '98 + Cygwin 1.3.10 Intel Pentium III GCC 2.95.3-5 48 Windows NT 4.0 SP6a Intel Pentium II GCC 2.95.3-5 49 Windows XP + Cygwin 1.3.10 Intel Pentium IV GCC 2.95.3-5 60 Red Hat i386 GCC 2.95.2 Dr. Alexander Zimmermann 62 Red Hat i386 GCC "2.96" ??? 65 Linux 7.Xi386 & alpha GCC 3.0 <Alexander.Zimmermann@fmi.uni-passau.de> 78 Mac OS X GCC 2.95.2 140 system may not be sufficient to support Magick++. Use of GCC 2.95 or later is [all …]
|
/external/google-breakpad/src/third_party/libdisasm/swig/tcl/ |
D | Makefile-swig | 9 ifndef GCC 10 GCC = gcc 44 $(GCC) $(LD_FLAGS) $(TCL_OBJ) -o $@ 47 $(GCC) $(CC_FLAGS) -I$(TCL_INC) -I.. -o $@ $<
|
/external/google-breakpad/src/third_party/libdisasm/swig/perl/ |
D | Makefile-swig | 9 ifndef GCC 10 GCC = gcc 45 #$(GCC) $(LD_FLAGS) $(PERL_OBJ) -o $@ 48 $(GCC) $(CC_FLAGS) $(PERL_CC_FLAGS) -I$(PERL_INC) -o $@ $<
|
/external/valgrind/ |
D | README.mips | 12 expects that native GCC is configured correctly and optimized for the platform. 14 GCC to compile to "mips1" by default. Depending on a target platform, using 41 gcc (GCC) 4.5.1, you must specify CFLAGS="-mips32r2 -mplt", e.g. 51 - You can not compile tests for DSP ASE if you are using gcc (GCC) older 53 - Older GCC may have issues with some inline assembly blocks. Get a toolchain 54 based on newer GCC versions, if possible.
|
/external/google-breakpad/src/third_party/libdisasm/swig/python/ |
D | Makefile-swig | 9 ifndef GCC 10 GCC = gcc 44 $(GCC) $(LD_FLAGS) $(PYTHON_OBJ) -o $@ 47 $(GCC) $(CC_FLAGS) -I$(PYTHON_INC) -I.. -o $@ $<
|
/external/clang/test/Sema/ |
D | format-strings.c | 194 #pragma GCC diagnostic ignored "-Wformat-nonliteral" 195 #pragma GCC diagnostic warning "-Wformat-security" 414 #pragma GCC diagnostic warning "-Wformat" 415 #pragma GCC diagnostic ignored "-Wformat-security" 453 #pragma GCC diagnostic warning "-Wformat" 454 #pragma GCC diagnostic warning "-Wformat-security" 611 #pragma GCC diagnostic ignored "-Wformat-nonliteral" 612 #pragma GCC diagnostic warning "-Wformat-security" 619 #pragma GCC diagnostic warning "-Wformat-nonliteral"
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-06-01-GCCOptimizations2.txt | 4 Subject: RE: Interesting: GCC passes 11 could do them a translation unit at a time, just as GCC does now. This 15 .c --GCC--> .llvm --llvmopt--> .llvm 39 Does using GCC's backend buy us anything? 41 > It also occurs to me that GCC is probably doing quite a bit of back-end 44 Not really. The irritating part of GCC is that it mixes it all up and 68 GCC as a static compiler.
|