summaryrefslogtreecommitdiff
path: root/tests/tests2/107_stack_safe.c
blob: 479c84d37dad45050a46233f3eb76aeda4540f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extern int printf(const char *, ...);

static void func_ull_ull(unsigned long long l1,unsigned long long l2){
}

int main()
{
  int a,b,c,d;
  a=1;b=2;c=3;d=4;
  func_ull_ull((unsigned long long)a/1.0,(unsigned long long)b/1.0);
  printf("%d %d %d %d",a,b,c,d);
  return 0;
}