in Compiler Design
1,648 views
0 votes
0 votes

How to solve Questions of DAG like :- https://gateoverflow.in/2068/gate2014-3-34

My Solution:- (Please Point out what i am doing wrong)

and please also do tell the proper way to do such question

in Compiler Design
by
1.6k views

2 Comments

a=b+c and d=b+c but in between c is changing right? therefore a=d is false...

next e=d-b but d=b+c ====> e=c

next a=e+b by e=c ==> a=b+c but already b+c=d ===>a=d
0
0
Oh yeah thats a silly mistake Thank You :)
0
0

Please log in or register to answer this question.