aboutsummaryrefslogtreecommitdiff
path: root/testbed/custom_opt.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-07 03:07:34 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-07 03:07:34 +0800
commit0ac22f0214ee283ce9bb053d691aeac823f875be (patch)
tree46a8b37c505fc6789d6834e053322aadc2ec7e0e /testbed/custom_opt.c
parentd3cea3654c2392154cee027903d126f41b679c87 (diff)
add opt checking testcases
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);
-}