mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
Supporting: - structs - ptrs - n-dimension arrays - nested structs - typedef - sizeof - shift operations Benchmarks: - Original HyCC kmeans testcase (without recursion). - Original HyCC gauss testcase. Co-authored-by: Alex Ozdemir <aozdemir@hmc.edu> Co-authored-by: Ubuntu <ubuntu@neptune2.maas>
3 lines
107 B
C
3 lines
107 B
C
int main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
|
|
return (a << 1) + b;
|
|
} |