aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/123 llvm ir and assembly/main.cpp
blob: f2c7de36ca86003ec6f6dcad7732e48f5c0ac70a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

extern "C" {
  unsigned square_unsigned (unsigned a);
}

int
main (int argc, char * argv[])
{
  unsigned int ret = square_unsigned (2);
  if (ret != 4) {
    printf("Got %u instead of 4\n", ret);
    return 1;
  }
  return 0;
}