view python/tests/testcode.c @ 172:5a7d37d615ee

Added function to IR
author Windel Bouwman
date Thu, 04 Apr 2013 17:58:37 +0200
parents f2d980eef509
children
line wrap: on
line source

int Calculate(int a, int b, int c)
{
   int d, e;
   d = a + b;
   e = d * c - a;
   return a + b + c + d + e;
}