aboutsummaryrefslogtreecommitdiff
path: root/tests/return64bit/test.c
blob: e75ee5c13c557ae5ce87d0f3fb81ba4ed22d89ec (plain)
1
2
3
4
5
6
// This is just a trivial test function, the key bit of interest is that it returns a 64 bit long.
long long test() {
    long long x = ((long long)1234 << 32) + 5678;
    return x;
}