aboutsummaryrefslogtreecommitdiff
path: root/testbed/custom_opt.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-07 11:55:51 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-07 11:55:51 +0800
commit30ecc9941b8da7a3c0108bc6117a1434e9caab94 (patch)
tree6a24b25086c63a4aa112fc6173b29c31793099d8 /testbed/custom_opt.c
parentbbb4de0693ba2b010cd2c44805d9a4ee4a2a8904 (diff)
parent52b29440f8f1310e0c074c8eb409e433c56bdd62 (diff)
Merge /home/ymf/work/cibic into optimization
Diffstat (limited to 'testbed/custom_opt.c')
-rw-r--r--testbed/custom_opt.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/testbed/custom_opt.c b/testbed/custom_opt.c
deleted file mode 100644
index d0126f3..0000000
--- a/testbed/custom_opt.c
+++ /dev/null
@@ -1,9 +0,0 @@
-int sum;
-void f() {
- sum = 3;
-}
-int main() {
- sum = 1;
- f();
- printf("%d\n", sum);
-}