| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |