-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathR_12_02.c
executable file
·48 lines (37 loc) · 1.06 KB
/
R_12_02.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Release: 2016-01-01
*
* Example from MISRA C:2012 ( THIS IS NOT A TEST SUITE )
*
* Copyright HORIBA MIRA Limited.
*
* See file READ_ME.txt for full copyright, license and release instructions.
*/
/*
* R.12.2
*
* The right hand operand of a shift operator shall lie in the range zero to
* one less than the width in bits of the essential type of the left hand
* operand
*/
#include "mc3_types.h"
#include "mc3_header.h"
void R_12_2 ( void )
{
uint8_t u8a = get_uint8 ( );
uint16_t u16a;
uint64_t u64a;
u8a = u8a << 7 ; /* Compliant */
use_uint8 ( u8a );
u8a = u8a << 8; /* Non-compliant */
use_uint8 ( u8a );
u16a = ( uint16_t ) u8a << 9; /* Compliant */
use_uint16 ( u16a );
u8a = 1u << 10u; /* Non-compliant */
use_uint8 ( u8a );
u16a = ( uint16_t )1u << 10u; /* Compliant */
use_uint16 ( u16a );
u64a = 1UL << 10u; /* Compliant */
use_uint64 ( u64a );
}
/* end of R_12_02.c */