Home
last modified time | relevance | path

Searched refs:GCC (Results 1 – 25 of 1029) sorted by relevance

12345678910>>...42

/external/clang/test/CodeGenCXX/
Dpragma-visibility.cpp3 #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/
Dpragma-visibility.cpp4 #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/python/cpython2/Modules/_ctypes/libffi/
DREADME55 | AArch64 | Linux | GCC |
56 | Alpha | Linux | GCC |
57 | Alpha | Tru64 | GCC |
58 | ARC | Linux | GCC |
59 | ARM | Linux | GCC |
60 | ARM | iOS | GCC |
61 | AVR32 | Linux | GCC |
62 | Blackfin | uClinux | GCC |
63 | HPPA | HPUX | GCC |
64 | IA-64 | Linux | GCC |
[all …]
/external/libffi/
DREADME55 | AArch64 | Linux | GCC |
56 | Alpha | Linux | GCC |
57 | Alpha | Tru64 | GCC |
58 | ARC | Linux | GCC |
59 | ARM | Linux | GCC |
60 | ARM | iOS | GCC |
61 | AVR32 | Linux | GCC |
62 | Blackfin | uClinux | GCC |
63 | HPPA | HPUX | GCC |
64 | IA-64 | Linux | GCC |
[all …]
/external/libpcap/
Ddiag-control.h94 PCAP_DO_PRAGMA(GCC diagnostic push) \
95 PCAP_DO_PRAGMA(GCC diagnostic ignored "-Wsign-compare") \
96 PCAP_DO_PRAGMA(GCC diagnostic ignored "-Wunused-parameter") \
97 PCAP_DO_PRAGMA(GCC diagnostic ignored "-Wunreachable-code")
99 PCAP_DO_PRAGMA(GCC diagnostic pop)
154 PCAP_DO_PRAGMA(GCC diagnostic push) \
155 PCAP_DO_PRAGMA(GCC diagnostic ignored "-Wshadow") \
156 PCAP_DO_PRAGMA(GCC diagnostic ignored "-Wunreachable-code")
158 PCAP_DO_PRAGMA(GCC diagnostic pop)
205 PCAP_DO_PRAGMA(GCC diagnostic push) \
[all …]
/external/llvm/test/CodeGen/X86/
Ddllexport.ll4 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s
6 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s
121 ; CHECK-GCC: -export:f1
122 ; CHECK-GCC-SAME: -export:f2
123 ; CHECK-GCC-SAME: -export:stdfun@0
124 ; CHECK-GCC-SAME: -export:@fastfun@0
125 ; CHECK-GCC-SAME: -export:thisfun
126 ; CHECK-GCC-SAME: -export:lnk1
127 ; CHECK-GCC-SAME: -export:lnk2
128 ; CHECK-GCC-SAME: -export:weak1
[all …]
/external/clang/test/Preprocessor/
Dpragma_diagnostic.c7 #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…
Dpragma_diagnostic_output.c3 #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
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Ddllexport.ll4 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s
6 ; RUN: | FileCheck -check-prefix CHECK -check-prefix CHECK-GCC %s
121 ; CHECK-GCC: .ascii " -export:f1"
122 ; CHECK-GCC: .ascii " -export:f2"
123 ; CHECK-GCC: .ascii " -export:stdfun@0"
124 ; CHECK-GCC: .ascii " -export:@fastfun@0"
125 ; CHECK-GCC: .ascii " -export:thisfun"
126 ; CHECK-GCC: .ascii " -export:lnk1"
127 ; CHECK-GCC: .ascii " -export:lnk2"
128 ; CHECK-GCC: .ascii " -export:weak1"
[all …]
/external/clang/test/Parser/
Dpragma-visibility.c3 #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/
Dpragma-message.c21 #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}}
Dpragma-message2.c9 #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/include/clang/Basic/
DObjCRuntime.h50 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()
/external/clang/test/Misc/
Dbackend-stack-frame-diagnostics.cpp38 #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/eigen/doc/
DWrongStackAlignment.dox5 <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/perfetto/src/tracing/core/
Dtrace_config.cc42 #pragma GCC diagnostic push
43 #pragma GCC diagnostic ignored "-Wfloat-equal"
69 #pragma GCC diagnostic pop
307 #pragma GCC diagnostic push
308 #pragma GCC diagnostic ignored "-Wfloat-equal"
313 #pragma GCC diagnostic pop
350 #pragma GCC diagnostic push
351 #pragma GCC diagnostic ignored "-Wfloat-equal"
357 #pragma GCC diagnostic pop
401 #pragma GCC diagnostic push
[all …]
Dcommit_data_request.cc42 #pragma GCC diagnostic push
43 #pragma GCC diagnostic ignored "-Wfloat-equal"
49 #pragma GCC diagnostic pop
104 #pragma GCC diagnostic push
105 #pragma GCC diagnostic ignored "-Wfloat-equal"
111 #pragma GCC diagnostic pop
155 #pragma GCC diagnostic push
156 #pragma GCC diagnostic ignored "-Wfloat-equal"
164 #pragma GCC diagnostic pop
232 #pragma GCC diagnostic push
[all …]
Dobservable_events.cc42 #pragma GCC diagnostic push
43 #pragma GCC diagnostic ignored "-Wfloat-equal"
47 #pragma GCC diagnostic pop
85 #pragma GCC diagnostic push
86 #pragma GCC diagnostic ignored "-Wfloat-equal"
93 #pragma GCC diagnostic pop
/external/clang/test/CodeGen/
Dpragma-visibility.c3 #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/swiftshader/third_party/LLVM/tools/bugpoint/
DToolRunner.h39 class GCC {
43 GCC(const sys::Path &gccPath, const sys::Path &RemotePath, in GCC() function
51 static GCC *create(std::string &Message,
127 virtual GCC::FileType OutputCode(const std::string &Bitcode,
132 return GCC::AsmFile;
159 GCC *gcc;
161 CBE(const sys::Path &llcPath, GCC *Gcc, in CBE()
191 virtual GCC::FileType OutputCode(const std::string &Bitcode,
204 GCC *gcc;
207 LLC(const std::string &llcPath, GCC *Gcc, in LLC()
[all …]
/external/catch2/include/internal/
Dcatch_suppress_warnings.h22 # pragma GCC diagnostic ignored "-Wparentheses" // See #674 for details
24 # pragma GCC diagnostic push
25 # pragma GCC diagnostic ignored "-Wunused-variable"
26 # pragma GCC diagnostic ignored "-Wpadded"
/external/syzkaller/docs/linux/
Dsetup_ubuntu-host_qemu-vm_x86-64-kernel.md5 ## GCC section in Setup: Ubuntu host, QEMU vm, x86-64 kernel
7 …kaller requires coverage support in GCC, we need to use a recent GCC version. To checkout GCC 7.1.…
9 svn checkout svn://gcc.gnu.org/svn/gcc/trunk $GCC
10 cd $GCC
34 Install GCC prerequisites:
39 Build GCC:
44 …=no --with-gnu-as --with-gnu-ld --with-ld=/usr/bin/ld.bfd --disable-multilib --prefix=$GCC/install/
49 Now you should have GCC binaries in `$GCC/install/bin/`:
51 $ ls $GCC/install/bin/
88 Build the kernel with previously built GCC:
[all …]
/external/ImageMagick/Magick++/
DINSTALL35 ("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/tensorflow/tensorflow/contrib/lite/kernels/internal/
Dcommon.h35 #pragma GCC diagnostic push
36 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
37 #pragma GCC diagnostic ignored "-Wattributes"
39 #pragma GCC diagnostic push
40 #pragma GCC diagnostic ignored "-Wnarrowing"
41 #pragma GCC diagnostic ignored "-Wsequence-point"
46 #pragma GCC diagnostic pop
/external/libjpeg-turbo/release/
Dinstaller.nsi.in21 !ifdef GCC
28 !ifdef GCC
37 !ifdef GCC
43 !ifdef GCC
48 !ifdef GCC
60 !ifdef GCC
95 !ifdef GCC
125 !ifdef GCC
169 !ifdef GCC
181 !ifdef GCC

12345678910>>...42