aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/print-vals.c
blob: 452bcaf527c8ae6b74949110a20aa06b86626096 (plain)
1
2
3
4
5
6
7
void printf(char*, ...);

int main() {
  printf("%f, %d, %f, %d, %f\n", //, %d, %f, %d, %f, %d\n", 
          1.0, 2, 3.0, 4, 5.0 /*, 6, 7.0, 8, 9.0, 10*/);
  return 0;
}