浏览代码

Added test file to be compiled on SSH.

Taddeus Kroes 14 年之前
父节点
当前提交
b6b91c9cd3
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      benchmarks/test.c

+ 7 - 0
benchmarks/test.c

@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(void) {
+    int a = 2, b = 5, c = a * b, d = a * 6, e = 3 * 7;
+
+    return 0;
+}