Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: gdb/testsuite/gdb.base/bitfields2.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.base/bitfields.exp ('k') | gdb/testsuite/gdb.base/bitfields2.exp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Test program to test bit field operations on bit fields of large 1 /* Test program to test bit field operations on bit fields of large
2 integer types. */ 2 integer types. */
3 3
4 /* This file is expected to fail to compile if the type long long int 4 /* This file is expected to fail to compile if the type long long int
5 is not supported, but in that case it is irrelevant. */ 5 is not supported, but in that case it is irrelevant. */
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #if !defined(__STDC__) && !defined(__cplusplus) 10 #if !defined(__STDC__) && !defined(__cplusplus)
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 flags.s1 = 0; 155 flags.s1 = 0;
156 flags.s2 = 0; 156 flags.s2 = 0;
157 flags.s3 = 0; 157 flags.s3 = 0;
158 158
159 break5 (); 159 break5 ();
160 } 160 }
161 161
162 int main () 162 int main ()
163 { 163 {
164 int i; 164 int i;
165 #ifdef usestubs 165
166 set_debug_traps();
167 breakpoint();
168 #endif
169 for (i = 0; i < 5; i += 1) 166 for (i = 0; i < 5; i += 1)
170 tester (); 167 tester ();
171 return 0; 168 return 0;
172 } 169 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/bitfields.exp ('k') | gdb/testsuite/gdb.base/bitfields2.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698