summaryrefslogtreecommitdiff
path: root/test/regression/casts2.c
blob: b76207641872caa747f0ae1c3af0be73f034ae7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdint.h>
#include <stdio.h>

uint16_t func_46(void)
{
    int8_t l_48 = 0xA0;
    return l_48;
}

int main(void)
{
    int32_t t_3 = 0;
    t_3 = func_46();
    printf("t_3 = %d\n", t_3);
    return 0;
}