summaryrefslogtreecommitdiff
path: root/test/Decider/MD5-winonly-fixture/test_parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'test/Decider/MD5-winonly-fixture/test_parse.y')
-rw-r--r--test/Decider/MD5-winonly-fixture/test_parse.y43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/Decider/MD5-winonly-fixture/test_parse.y b/test/Decider/MD5-winonly-fixture/test_parse.y
new file mode 100644
index 000000000..3ead9d2b8
--- /dev/null
+++ b/test/Decider/MD5-winonly-fixture/test_parse.y
@@ -0,0 +1,43 @@
+%{
+#include<stdio.h>
+
+int regs[26];
+int base;
+
+%}
+
+%start digit
+
+%union { int a; }
+
+
+%token DIGIT LETTER
+
+%left '|'
+%left '&'
+%left '+' '-'
+%left '*' '/' '%'
+%left UMINUS /*supplies precedence for unary minus */
+
+%% /* beginning of rules section */
+
+digit: DIGIT;
+
+
+%%
+main()
+{
+ return(yyparse());
+}
+
+yyerror(s)
+char *s;
+{
+ fprintf(stderr, "%s\n",s);
+ return(0);
+}
+
+yywrap()
+{
+ return(1);
+} \ No newline at end of file