-; This should parse correctly without an 'implementation', but there seems to
-; be a problem...
+; This should parse correctly without an 'implementation', but our current YACC
+; based parser doesn't have the required 2 token lookahead...
%T = type int *
-%T "test"()
-begin
+%T %test() {
ret %T null
-end
-
+}
br label %BB1
BB1: ;[#uses=2]
- %ret = phi sbyte* [ getelementptr ([12 x sbyte]* %.LC0, uint 0, uint 0), %0 ], [ null, %BB2 ]
+ %ret = phi sbyte* [ getelementptr ([12 x sbyte]* %.LC0, long 0, long 0), %0 ], [ null, %BB2 ]
ret sbyte* %ret
BB2:
implementation ; Functions:
sbyte* %test() {
- ret sbyte* getelementptr ([12 x sbyte]* %.LC0, uint 0, uint 0)
+ ret sbyte* getelementptr ([12 x sbyte]* %.LC0, long 0, long 0)
}