-
Notifications
You must be signed in to change notification settings - Fork 0
/
0B26C7F1E2826956.ll
1206 lines (1032 loc) · 63.5 KB
/
0B26C7F1E2826956.ll
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; ModuleID = '/usr/local/google/home/aeubanks/repos/test-suite/MultiSource/Applications/spiff/parse.c'
source_filename = "/usr/local/google/home/aeubanks/repos/test-suite/MultiSource/Applications/spiff/parse.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
%struct._W_bolstruct = type { [16 x i8], [16 x i8], [16 x i8] }
%struct._W_comstruct = type { [16 x i8], [16 x i8], [16 x i8], i32 }
%struct._K_str = type { i32, i32, i32, ptr, ptr, ptr }
%struct._W_litstruct = type { [16 x i8], [16 x i8], [16 x i8] }
@_P_alpha = internal global [256 x i8] zeroinitializer, align 16
@.str = private unnamed_addr constant [47 x i8] c"too many characters added to extended alphabet\00", align 1
@_P_fnumb = internal unnamed_addr global i32 0, align 4
@_P_start = internal unnamed_addr global i32 0, align 4
@_P_lcount = internal unnamed_addr global i32 0, align 4
@_P_flags = internal unnamed_addr global i32 0, align 4
@_P_dummyline = internal global [2 x i8] zeroinitializer, align 1
@_P_nextchr = internal unnamed_addr global ptr null, align 8
@_P_has_content = internal unnamed_addr global i1 false, align 4
@_P_next_tol = internal unnamed_addr global i32 0, align 4
@_L_bc = external local_unnamed_addr global [0 x i32], align 4
@_L_btlm = external local_unnamed_addr global i32, align 4
@_L_atlm = external local_unnamed_addr global i32, align 4
@_L_ac = external local_unnamed_addr global [0 x i32], align 4
@_P_realline = internal unnamed_addr global i32 0, align 4
@Z_err_buf = external global [0 x i8], align 1
@.str.1 = private unnamed_addr constant [36 x i8] c"parser got confused at end of file\0A\00", align 1
@_L_bclm = external local_unnamed_addr global i32, align 4
@_L_aclm = external local_unnamed_addr global i32, align 4
@_P_firstchr = internal unnamed_addr global ptr null, align 8
@_L_btlindex = external local_unnamed_addr global [0 x i32], align 4
@_L_atlindex = external local_unnamed_addr global [0 x i32], align 4
@_K_btm = external local_unnamed_addr global i32, align 4
@_K_atm = external local_unnamed_addr global i32, align 4
@_L_bi = external local_unnamed_addr global [0 x i32], align 4
@_L_ai = external local_unnamed_addr global [0 x i32], align 4
@_P_stringsize = internal unnamed_addr global i32 0, align 4
@_L_bl = external local_unnamed_addr global [0 x ptr], align 8
@_L_bclindex = external local_unnamed_addr global [0 x i32], align 4
@_L_al = external local_unnamed_addr global [0 x ptr], align 8
@_L_aclindex = external local_unnamed_addr global [0 x i32], align 4
@.str.2 = private unnamed_addr constant [70 x i8] c"warning -- to many tokens in file only first %d tokens will be used.\0A\00", align 1
@.str.3 = private unnamed_addr constant [32 x i8] c"scanned %d words from file #%d\0A\00", align 1
; Function Attrs: nounwind uwtable
define dso_local void @P_addalpha(ptr noundef %ptr) local_unnamed_addr #0 {
entry:
%buf = alloca [1024 x i8], align 16
call void @llvm.lifetime.start.p0(i64 1024, ptr nonnull %buf) #9
call void (ptr, ptr, ...) @S_wordcpy(ptr noundef nonnull %buf, ptr noundef %ptr) #9
%call = call i64 @strlen(ptr noundef nonnull dereferenceable(1) @_P_alpha) #10
%call2 = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %buf) #10
%add = add i64 %call2, %call
%cmp = icmp ugt i64 %add, 255
br i1 %cmp, label %if.then, label %if.end
if.then: ; preds = %entry
call void (ptr, ...) @Z_fatal(ptr noundef nonnull @.str) #9
br label %if.end
if.end: ; preds = %if.then, %entry
%call4 = call ptr @strcat(ptr noundef nonnull dereferenceable(1) @_P_alpha, ptr noundef nonnull dereferenceable(1) %buf) #9
call void @llvm.lifetime.end.p0(i64 1024, ptr nonnull %buf) #9
ret void
}
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
declare void @llvm.lifetime.start.p0(i64 immarg, ptr nocapture) #1
declare void @S_wordcpy(...) local_unnamed_addr #2
; Function Attrs: mustprogress nofree nounwind willreturn memory(argmem: read)
declare i64 @strlen(ptr nocapture noundef) local_unnamed_addr #3
declare void @Z_fatal(...) local_unnamed_addr #2
; Function Attrs: mustprogress nofree nounwind willreturn memory(argmem: readwrite)
declare ptr @strcat(ptr noalias noundef returned, ptr noalias nocapture noundef readonly) local_unnamed_addr #4
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
declare void @llvm.lifetime.end.p0(i64 immarg, ptr nocapture) #1
; Function Attrs: nounwind uwtable
define dso_local void @P_file_parse(i32 noundef %num, i32 noundef %strt, i32 noundef %lcnt, i32 noundef %flags) local_unnamed_addr #0 {
entry:
%ptr.i = alloca ptr, align 8
store i32 %num, ptr @_P_fnumb, align 4, !tbaa !5
store i32 %strt, ptr @_P_start, align 4, !tbaa !5
store i32 %lcnt, ptr @_P_lcount, align 4, !tbaa !5
store i32 %flags, ptr @_P_flags, align 4, !tbaa !5
store i8 0, ptr @_P_dummyline, align 1, !tbaa !9
tail call void (...) @C_clear_cmd() #9
tail call void (...) @T_clear_tols() #9
tail call void (...) @W_clearcoms() #9
tail call void (...) @W_clearlits() #9
store i8 0, ptr @_P_alpha, align 16, !tbaa !9
tail call void (...) @C_docmds() #9
store ptr @_P_dummyline, ptr @_P_nextchr, align 8, !tbaa !10
store i1 false, ptr @_P_has_content, align 4
store i32 0, ptr @_P_next_tol, align 4, !tbaa !5
%0 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool.not = icmp eq i32 %0, 0
%_L_ac._L_bc = select i1 %tobool.not, ptr @_L_ac, ptr @_L_bc
%_L_atlm.val = load i32, ptr @_L_atlm, align 4
%_L_btlm.val = load i32, ptr @_L_btlm, align 4
%1 = select i1 %tobool.not, i32 %_L_atlm.val, i32 %_L_btlm.val
%idxprom9 = sext i32 %1 to i64
%arrayidx10 = getelementptr inbounds [0 x i32], ptr %_L_ac._L_bc, i64 0, i64 %idxprom9
store i32 0, ptr %arrayidx10, align 4, !tbaa !5
%2 = load i32, ptr @_P_start, align 4, !tbaa !5
%sub = add nsw i32 %2, -1
store i32 %sub, ptr @_P_realline, align 4, !tbaa !5
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %ptr.i) #9
br label %while.cond.i
while.cond.i: ; preds = %while.cond.backedge.i, %entry
%3 = phi ptr [ %.pre, %while.cond.backedge.i ], [ @_P_dummyline, %entry ]
%4 = load i8, ptr %3, align 1, !tbaa !9
%cmp.i.i = icmp eq i8 %4, 0
br i1 %cmp.i.i, label %if.then.i, label %if.end14.i
if.then.i: ; preds = %while.cond.i
%call1.i = call fastcc i32 @_P_nextline(), !range !12
%tobool2.not.i = icmp eq i32 %call1.i, 0
br i1 %tobool2.not.i, label %if.end.i, label %_P_do_parse.exit
if.end.i: ; preds = %if.then.i
%.b.i = load i1, ptr @_P_has_content, align 4
br i1 %.b.i, label %if.end6.i, label %while.cond.backedge.i
if.end6.i: ; preds = %if.end.i
%5 = load ptr, ptr @_P_firstchr, align 8, !tbaa !10
%call7.i = call ptr (ptr, ...) @W_isbol(ptr noundef %5) #9
%cmp.not.i = icmp eq ptr %call7.i, null
br i1 %cmp.not.i, label %if.end14.i, label %if.then8.i
if.then8.i: ; preds = %if.end6.i
%call.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %call7.i) #10
%6 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr.i.i = getelementptr inbounds i8, ptr %6, i64 %call.i.i
store ptr %add.ptr.i.i, ptr @_P_nextchr, align 8, !tbaa !10
%end.i.i = getelementptr inbounds %struct._W_bolstruct, ptr %call7.i, i64 0, i32 1
%7 = load i8, ptr %end.i.i, align 1, !tbaa !9
%cmp.i404.i = icmp eq i8 %7, 0
br i1 %cmp.i404.i, label %while.cond.backedge.i, label %while.body.preheader.i.i
while.body.preheader.i.i: ; preds = %if.then8.i
%escape.i.i = getelementptr inbounds %struct._W_bolstruct, ptr %call7.i, i64 0, i32 2
br label %while.body.i.i
while.body.i.i: ; preds = %while.body.backedge.i.i, %while.body.preheader.i.i
%8 = phi ptr [ %incdec.ptr.i.i, %while.body.backedge.i.i ], [ %add.ptr.i.i, %while.body.preheader.i.i ]
%9 = load i8, ptr %8, align 1, !tbaa !9
%cmp.i.i.i = icmp eq i8 %9, 0
br i1 %cmp.i.i.i, label %if.then4.i.i, label %if.end16.i.i
if.then4.i.i: ; preds = %while.body.i.i
%call5.i.i = call fastcc i32 @_P_nextline(), !range !12
%tobool6.not.i.i = icmp eq i32 %call5.i.i, 0
br i1 %tobool6.not.i.i, label %if.end8.i.i, label %_P_do_parse.exit
if.end8.i.i: ; preds = %if.then4.i.i
%.b.i.i = load i1, ptr @_P_has_content, align 4
br i1 %.b.i.i, label %if.end16.i.i, label %if.then10.i.i
if.then10.i.i: ; preds = %if.end8.i.i
%call11.i.i = call i32 (ptr, ...) @W_is_bol(ptr noundef nonnull %call7.i) #9
%tobool12.not.i.i = icmp eq i32 %call11.i.i, 0
br i1 %tobool12.not.i.i, label %while.cond.backedge.i, label %if.end16.i.i
if.end16.i.i: ; preds = %if.then10.i.i, %if.end8.i.i, %while.body.i.i
%10 = load i8, ptr %escape.i.i, align 1, !tbaa !9
%cmp19.not.i.i = icmp eq i8 %10, 0
br i1 %cmp19.not.i.i, label %if.end42.i.i, label %land.lhs.true.i.i
land.lhs.true.i.i: ; preds = %if.end16.i.i
%11 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call23.i.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %11, ptr noundef nonnull %escape.i.i) #9
%tobool24.not.i.i = icmp eq i32 %call23.i.i, 0
br i1 %tobool24.not.i.i, label %land.lhs.true25.i.i, label %if.end42.i.i
land.lhs.true25.i.i: ; preds = %land.lhs.true.i.i
%12 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call28.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i.i) #10
%add.ptr29.i.i = getelementptr inbounds i8, ptr %12, i64 %call28.i.i
%call32.i.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %add.ptr29.i.i, ptr noundef nonnull %end.i.i) #9
%tobool33.not.i.i = icmp eq i32 %call32.i.i, 0
br i1 %tobool33.not.i.i, label %if.then34.i.i, label %if.end42.i.i
if.then34.i.i: ; preds = %land.lhs.true25.i.i
%call37.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i.i) #10
%call40.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i.i) #10
%add.i.i = add i64 %call40.i.i, %call37.i.i
br label %while.body.backedge.i.i
if.end42.i.i: ; preds = %land.lhs.true25.i.i, %land.lhs.true.i.i, %if.end16.i.i
%13 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call45.i.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %13, ptr noundef nonnull %end.i.i) #9
%tobool46.not.i.i = icmp eq i32 %call45.i.i, 0
br i1 %tobool46.not.i.i, label %if.then47.i.i, label %while.body.backedge.i.i
if.then47.i.i: ; preds = %if.end42.i.i
%call50.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i.i) #10
%14 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr51.i.i = getelementptr inbounds i8, ptr %14, i64 %call50.i.i
br label %while.cond.backedge.sink.split.i
while.body.backedge.i.i: ; preds = %if.end42.i.i, %if.then34.i.i
%.sink63.i.i = phi i64 [ %add.i.i, %if.then34.i.i ], [ 1, %if.end42.i.i ]
%15 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%incdec.ptr.i.i = getelementptr inbounds i8, ptr %15, i64 %.sink63.i.i
store ptr %incdec.ptr.i.i, ptr @_P_nextchr, align 8, !tbaa !10
br label %while.body.i.i
if.end14.i: ; preds = %if.end6.i, %while.cond.i
%16 = load i32, ptr @_P_flags, align 4, !tbaa !5
%and.i = and i32 %16, 1
%tobool15.not.i = icmp eq i32 %and.i, 0
br i1 %tobool15.not.i, label %land.lhs.true.i, label %if.end14.if.end21_crit_edge.i
if.end14.if.end21_crit_edge.i: ; preds = %if.end14.i
%.pre.i = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
br label %if.end21.i
land.lhs.true.i: ; preds = %if.end14.i
%call16.i = tail call ptr @__ctype_b_loc() #11
%17 = load ptr, ptr %call16.i, align 8, !tbaa !10
%18 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%19 = load i8, ptr %18, align 1, !tbaa !9
%idxprom.i = sext i8 %19 to i64
%arrayidx.i = getelementptr inbounds i16, ptr %17, i64 %idxprom.i
%20 = load i16, ptr %arrayidx.i, align 2, !tbaa !13
%21 = and i16 %20, 8192
%tobool19.not.i = icmp eq i16 %21, 0
br i1 %tobool19.not.i, label %if.end21.i, label %if.then20.i
if.then20.i: ; preds = %land.lhs.true.i
%incdec.ptr.i = getelementptr inbounds i8, ptr %18, i64 1
br label %while.cond.backedge.sink.split.i
while.cond.backedge.sink.split.i: ; preds = %if.then20.i, %if.then47.i.i
%add.ptr51.i.sink.i = phi ptr [ %add.ptr51.i.i, %if.then47.i.i ], [ %incdec.ptr.i, %if.then20.i ]
store ptr %add.ptr51.i.sink.i, ptr @_P_nextchr, align 8, !tbaa !10
br label %while.cond.backedge.i
while.cond.backedge.i: ; preds = %if.then10.i.i, %if.then47.i438.i, %if.then10.i418.i, %if.end361.i, %if.then25.i, %while.cond.backedge.sink.split.i, %if.then8.i, %if.end.i
%.pre = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
br label %while.cond.i
if.end21.i: ; preds = %land.lhs.true.i, %if.end14.if.end21_crit_edge.i
%22 = phi ptr [ %.pre.i, %if.end14.if.end21_crit_edge.i ], [ %18, %land.lhs.true.i ]
%call22.i = call ptr (ptr, ...) @W_iscom(ptr noundef %22) #9
%cmp23.not.i = icmp eq ptr %call22.i, null
br i1 %cmp23.not.i, label %if.end30.i, label %if.then25.i
if.then25.i: ; preds = %if.end21.i
%call.i405.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %call22.i) #10
%23 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr.i406.i = getelementptr inbounds i8, ptr %23, i64 %call.i405.i
store ptr %add.ptr.i406.i, ptr @_P_nextchr, align 8, !tbaa !10
%end.i407.i = getelementptr inbounds %struct._W_comstruct, ptr %call22.i, i64 0, i32 1
%24 = load i8, ptr %end.i407.i, align 4, !tbaa !9
%cmp.i408.i = icmp eq i8 %24, 0
br i1 %cmp.i408.i, label %while.cond.backedge.i, label %while.cond.preheader.i.i
while.cond.preheader.i.i: ; preds = %if.then25.i
%escape.i409.i = getelementptr inbounds %struct._W_comstruct, ptr %call22.i, i64 0, i32 2
br label %while.cond.outer.i.i
while.cond.outer.i.i: ; preds = %while.cond.outer.i.i.backedge, %while.cond.preheader.i.i
%.pre.i.i = phi ptr [ %add.ptr.i406.i, %while.cond.preheader.i.i ], [ %.pre.i.i.be, %while.cond.outer.i.i.backedge ]
%depth.0.ph.i.i = phi i32 [ 1, %while.cond.preheader.i.i ], [ %depth.0.ph.i.i.be, %while.cond.outer.i.i.backedge ]
br label %while.cond.i.i
while.cond.i.i: ; preds = %while.cond.backedge.i.i, %while.cond.outer.i.i
%25 = phi ptr [ %add.ptr41.i.i, %while.cond.backedge.i.i ], [ %.pre.i.i, %while.cond.outer.i.i ]
%26 = load i8, ptr %25, align 1, !tbaa !9
%cmp.i.i410.i = icmp eq i8 %26, 0
br i1 %cmp.i.i410.i, label %if.then4.i413.i, label %if.end16.i420.i
if.then4.i413.i: ; preds = %while.cond.i.i
%.b.i470.i = load i1, ptr @_P_has_content, align 4
br i1 %.b.i470.i, label %if.then.i.i, label %if.end47.i.i
if.then.i.i: ; preds = %if.then4.i413.i
%27 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool1.not.i.i = icmp eq i32 %27, 0
br i1 %tobool1.not.i.i, label %cond.false11.i.i, label %cond.true4.i.i
cond.true4.i.i: ; preds = %if.then.i.i
%28 = load i32, ptr @_L_bclm, align 4, !tbaa !5
%inc.i471.i = add nsw i32 %28, 1
store i32 %inc.i471.i, ptr @_L_bclm, align 4, !tbaa !5
%29 = load i32, ptr @_L_btlm, align 4
%idxprom.i.i = sext i32 %29 to i64
%arrayidx.i.i = getelementptr inbounds [0 x i32], ptr @_L_bc, i64 0, i64 %idxprom.i.i
%30 = load i32, ptr %arrayidx.i.i, align 4, !tbaa !5
%tobool10.not.i.i = icmp eq i32 %30, 0
br i1 %tobool10.not.i.i, label %if.end.i472.i, label %cond.true29.i.i
cond.false11.i.i: ; preds = %if.then.i.i
%31 = load i32, ptr @_L_aclm, align 4, !tbaa !5
%inc2.i.i = add nsw i32 %31, 1
store i32 %inc2.i.i, ptr @_L_aclm, align 4, !tbaa !5
%32 = load i32, ptr @_L_atlm, align 4
%idxprom17.i.i = sext i32 %32 to i64
%arrayidx18.i.i = getelementptr inbounds [0 x i32], ptr @_L_ac, i64 0, i64 %idxprom17.i.i
%33 = load i32, ptr %arrayidx18.i.i, align 4, !tbaa !5
%tobool19.not.i.i = icmp eq i32 %33, 0
br i1 %tobool19.not.i.i, label %if.end.i472.i, label %cond.false37.i.i
cond.true29.i.i: ; preds = %cond.true4.i.i
%inc23.i.i = add nsw i32 %29, 1
store i32 %inc23.i.i, ptr @_L_btlm, align 4, !tbaa !5
br label %if.end.sink.split.i.i
cond.false37.i.i: ; preds = %cond.false11.i.i
%inc25.i.i = add nsw i32 %32, 1
store i32 %inc25.i.i, ptr @_L_atlm, align 4, !tbaa !5
br label %if.end.sink.split.i.i
if.end.sink.split.i.i: ; preds = %cond.false37.i.i, %cond.true29.i.i
%inc23.sink.i.i = phi i32 [ %inc23.i.i, %cond.true29.i.i ], [ %inc25.i.i, %cond.false37.i.i ]
%_L_bc.sink.i.i = phi ptr [ @_L_bc, %cond.true29.i.i ], [ @_L_ac, %cond.false37.i.i ]
%idxprom35.i.i = sext i32 %inc23.sink.i.i to i64
%arrayidx36.i.i = getelementptr inbounds [0 x i32], ptr %_L_bc.sink.i.i, i64 0, i64 %idxprom35.i.i
store i32 0, ptr %arrayidx36.i.i, align 4, !tbaa !5
br label %if.end.i472.i
if.end.i472.i: ; preds = %if.end.sink.split.i.i, %cond.false11.i.i, %cond.true4.i.i
store i1 false, ptr @_P_has_content, align 4
br label %if.end47.i.i
if.end47.i.i: ; preds = %if.end.i472.i, %if.then4.i413.i
store i32 0, ptr @_P_next_tol, align 4, !tbaa !5
%34 = load i32, ptr @_P_realline, align 4, !tbaa !5
%inc48.i.i = add nsw i32 %34, 1
store i32 %inc48.i.i, ptr @_P_realline, align 4, !tbaa !5
%35 = load i32, ptr @_P_start, align 4, !tbaa !5
%36 = load i32, ptr @_P_lcount, align 4, !tbaa !5
%add.i473.i = add nsw i32 %36, %35
%cmp.not.i.i = icmp slt i32 %inc48.i.i, %add.i473.i
br i1 %cmp.not.i.i, label %if.end50.i.i, label %_P_do_parse.exit
if.end50.i.i: ; preds = %if.end47.i.i
%37 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool51.not.i.i = icmp eq i32 %37, 0
%idxprom53.i.i = sext i32 %inc48.i.i to i64
%arrayidx54.i.i = getelementptr inbounds [0 x ptr], ptr @_L_bl, i64 0, i64 %idxprom53.i.i
%arrayidx57.i.i = getelementptr inbounds [0 x ptr], ptr @_L_al, i64 0, i64 %idxprom53.i.i
%cond59.in.i.i = select i1 %tobool51.not.i.i, ptr %arrayidx57.i.i, ptr %arrayidx54.i.i
%cond59.i.i = load ptr, ptr %cond59.in.i.i, align 8, !tbaa !10
store ptr %cond59.i.i, ptr @_P_nextchr, align 8, !tbaa !10
store ptr %cond59.i.i, ptr @_P_firstchr, align 8, !tbaa !10
%call.i474.i = call i32 (ptr, ...) @C_is_cmd(ptr noundef %cond59.i.i) #9
%tobool60.not.i.i = icmp eq i32 %call.i474.i, 0
br i1 %tobool60.not.i.i, label %if.else.i.i, label %if.then10.i418.i
if.else.i.i: ; preds = %if.end50.i.i
%38 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool62.not.i475.i = icmp eq i32 %38, 0
%39 = load i32, ptr @_P_realline, align 4, !tbaa !5
%_L_aclindex._L_bclindex.i = select i1 %tobool62.not.i475.i, ptr @_L_aclindex, ptr @_L_bclindex
%_L_aclm.val.i = load i32, ptr @_L_aclm, align 4
%_L_bclm.val.i = load i32, ptr @_L_bclm, align 4
%40 = select i1 %tobool62.not.i475.i, i32 %_L_aclm.val.i, i32 %_L_bclm.val.i
%idxprom69.i.i = sext i32 %40 to i64
%arrayidx70.i.i = getelementptr inbounds [0 x i32], ptr %_L_aclindex._L_bclindex.i, i64 0, i64 %idxprom69.i.i
store i32 %39, ptr %arrayidx70.i.i, align 4, !tbaa !5
store i1 true, ptr @_P_has_content, align 4
br label %if.end16.i420.i
if.then10.i418.i: ; preds = %if.end50.i.i
store ptr @_P_dummyline, ptr @_P_nextchr, align 8, !tbaa !10
store i1 false, ptr @_P_has_content, align 4
%call11.i416.i = call i32 (ptr, ...) @W_is_com(ptr noundef nonnull %call22.i) #9
%tobool12.not.i417.i = icmp eq i32 %call11.i416.i, 0
br i1 %tobool12.not.i417.i, label %while.cond.backedge.i, label %if.end16.i420.i
if.end16.i420.i: ; preds = %if.then10.i418.i, %if.else.i.i, %while.cond.i.i
%41 = load i8, ptr %escape.i409.i, align 4, !tbaa !9
%cmp19.not.i419.i = icmp eq i8 %41, 0
br i1 %cmp19.not.i419.i, label %if.end42.i435.i, label %land.lhs.true.i423.i
land.lhs.true.i423.i: ; preds = %if.end16.i420.i
%42 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call23.i421.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %42, ptr noundef nonnull %escape.i409.i) #9
%tobool24.not.i422.i = icmp eq i32 %call23.i421.i, 0
br i1 %tobool24.not.i422.i, label %land.lhs.true25.i428.i, label %if.end42.i435.i
land.lhs.true25.i428.i: ; preds = %land.lhs.true.i423.i
%43 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call28.i424.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i409.i) #10
%add.ptr29.i425.i = getelementptr inbounds i8, ptr %43, i64 %call28.i424.i
%call32.i426.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %add.ptr29.i425.i, ptr noundef nonnull %end.i407.i) #9
%tobool33.not.i427.i = icmp eq i32 %call32.i426.i, 0
br i1 %tobool33.not.i427.i, label %if.then34.i432.i, label %if.end42.i435.i
if.then34.i432.i: ; preds = %land.lhs.true25.i428.i
%call37.i429.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i409.i) #10
%call40.i430.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i407.i) #10
%add.i431.i = add i64 %call40.i430.i, %call37.i429.i
br label %while.cond.backedge.i.i
while.cond.backedge.i.i: ; preds = %land.lhs.true63.i.i, %if.end60.i.i, %if.then34.i432.i
%add.sink.i.i = phi i64 [ %add.i431.i, %if.then34.i432.i ], [ 1, %land.lhs.true63.i.i ], [ 1, %if.end60.i.i ]
%44 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr41.i.i = getelementptr inbounds i8, ptr %44, i64 %add.sink.i.i
store ptr %add.ptr41.i.i, ptr @_P_nextchr, align 8, !tbaa !10
br label %while.cond.i.i
if.end42.i435.i: ; preds = %land.lhs.true25.i428.i, %land.lhs.true.i423.i, %if.end16.i420.i
%45 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call45.i433.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %45, ptr noundef nonnull %end.i407.i) #9
%tobool46.not.i434.i = icmp eq i32 %call45.i433.i, 0
br i1 %tobool46.not.i434.i, label %if.then47.i438.i, label %if.end60.i.i
if.then47.i438.i: ; preds = %if.end42.i435.i
%call50.i436.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i407.i) #10
%46 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr51.i437.i = getelementptr inbounds i8, ptr %46, i64 %call50.i436.i
store ptr %add.ptr51.i437.i, ptr @_P_nextchr, align 8, !tbaa !10
%call52.i.i = call i32 @W_is_nesting(ptr noundef nonnull %call22.i) #9
%tobool53.not.i.i = icmp eq i32 %call52.i.i, 0
%dec.i.i = add nsw i32 %depth.0.ph.i.i, -1
%cmp55.i.i = icmp eq i32 %dec.i.i, 0
%or.cond.i.i = select i1 %tobool53.not.i.i, i1 true, i1 %cmp55.i.i
%.pre.pre.i.i = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
br i1 %or.cond.i.i, label %while.cond.backedge.i, label %while.cond.outer.i.i.backedge
if.end60.i.i: ; preds = %if.end42.i435.i
%call61.i.i = call i32 @W_is_nesting(ptr noundef nonnull %call22.i) #9
%tobool62.not.i.i = icmp eq i32 %call61.i.i, 0
br i1 %tobool62.not.i.i, label %while.cond.backedge.i.i, label %land.lhs.true63.i.i
land.lhs.true63.i.i: ; preds = %if.end60.i.i
%47 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call66.i.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %47, ptr noundef nonnull %end.i407.i) #9
%tobool67.not.i.i = icmp eq i32 %call66.i.i, 0
br i1 %tobool67.not.i.i, label %if.then68.i.i, label %while.cond.backedge.i.i
if.then68.i.i: ; preds = %land.lhs.true63.i.i
%call71.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i407.i) #10
%48 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr72.i.i = getelementptr inbounds i8, ptr %48, i64 %call71.i.i
store ptr %add.ptr72.i.i, ptr @_P_nextchr, align 8, !tbaa !10
%inc.i.i = add nsw i32 %depth.0.ph.i.i, 1
br label %while.cond.outer.i.i.backedge
while.cond.outer.i.i.backedge: ; preds = %if.then68.i.i, %if.then47.i438.i
%.pre.i.i.be = phi ptr [ %.pre.pre.i.i, %if.then47.i438.i ], [ %add.ptr72.i.i, %if.then68.i.i ]
%depth.0.ph.i.i.be = phi i32 [ %dec.i.i, %if.then47.i438.i ], [ %inc.i.i, %if.then68.i.i ]
br label %while.cond.outer.i.i
if.end30.i: ; preds = %if.end21.i
%49 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool31.not.i = icmp eq i32 %49, 0
br i1 %tobool31.not.i, label %cond.false37.i, label %cond.true.i
cond.true.i: ; preds = %if.end30.i
%50 = load i32, ptr @_L_btlm, align 4
%idxprom34.i = sext i32 %50 to i64
%arrayidx35.i = getelementptr inbounds [0 x i32], ptr @_L_bc, i64 0, i64 %idxprom34.i
%51 = load i32, ptr %arrayidx35.i, align 4, !tbaa !5
%tobool36.not.i = icmp eq i32 %51, 0
br i1 %tobool36.not.i, label %cond.true77.i, label %if.end105.i
cond.false37.i: ; preds = %if.end30.i
%52 = load i32, ptr @_L_atlm, align 4
%idxprom43.i = sext i32 %52 to i64
%arrayidx44.i = getelementptr inbounds [0 x i32], ptr @_L_ac, i64 0, i64 %idxprom43.i
%53 = load i32, ptr %arrayidx44.i, align 4, !tbaa !5
%tobool45.not.i = icmp eq i32 %53, 0
br i1 %tobool45.not.i, label %cond.false90.i, label %if.end105.i
cond.true77.i: ; preds = %cond.true.i
%54 = load i32, ptr @_L_bclm, align 4
%arrayidx60.i = getelementptr inbounds [0 x i32], ptr @_L_btlindex, i64 0, i64 %idxprom34.i
store i32 %54, ptr %arrayidx60.i, align 4, !tbaa !5
%55 = load i32, ptr @_K_btm, align 4
%arrayidx89.i = getelementptr inbounds [0 x i32], ptr @_L_bi, i64 0, i64 %idxprom34.i
store i32 %55, ptr %arrayidx89.i, align 4, !tbaa !5
br label %if.end105.i
cond.false90.i: ; preds = %cond.false37.i
%56 = load i32, ptr @_L_aclm, align 4
%arrayidx73.i = getelementptr inbounds [0 x i32], ptr @_L_atlindex, i64 0, i64 %idxprom43.i
store i32 %56, ptr %arrayidx73.i, align 4, !tbaa !5
%57 = load i32, ptr @_K_atm, align 4
%arrayidx102.i = getelementptr inbounds [0 x i32], ptr @_L_ai, i64 0, i64 %idxprom43.i
store i32 %57, ptr %arrayidx102.i, align 4, !tbaa !5
br label %if.end105.i
if.end105.i: ; preds = %cond.false90.i, %cond.true77.i, %cond.false37.i, %cond.true.i
%58 = load i32, ptr @_L_btlm, align 4
%idxprom113.i = sext i32 %58 to i64
%arrayidx114.i = getelementptr inbounds [0 x i32], ptr @_L_btlindex, i64 0, i64 %idxprom113.i
%59 = load i32, ptr @_L_atlm, align 4
%idxprom121.i = sext i32 %59 to i64
%arrayidx122.i = getelementptr inbounds [0 x i32], ptr @_L_atlindex, i64 0, i64 %idxprom121.i
%cond124.in.i = select i1 %tobool31.not.i, ptr %arrayidx122.i, ptr %arrayidx114.i
%cond124.i = load i32, ptr %cond124.in.i, align 4, !tbaa !5
%60 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%61 = load ptr, ptr @_P_firstchr, align 8, !tbaa !10
%sub.ptr.lhs.cast.i = ptrtoint ptr %60 to i64
%sub.ptr.rhs.cast.i = ptrtoint ptr %61 to i64
%sub.ptr.sub.i = sub i64 %sub.ptr.lhs.cast.i, %sub.ptr.rhs.cast.i
%conv125.i = trunc i64 %sub.ptr.sub.i to i32
%call126.i = call ptr (i64, ...) @_Z_myalloc(i64 noundef 40) #9
%62 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool127.not.i = icmp eq i32 %62, 0
%63 = load i32, ptr @_L_btlm, align 4
%64 = load i32, ptr @_L_atlm, align 4
%cond131.i = select i1 %tobool127.not.i, i32 %64, i32 %63
store i32 %cond131.i, ptr %call126.i, align 8, !tbaa !15
%pos.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 1
store i32 %conv125.i, ptr %pos.i, align 4, !tbaa !17
%65 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call132.i = call ptr (ptr, ...) @W_islit(ptr noundef %65) #9
%cmp133.not.i = icmp eq ptr %call132.i, null
br i1 %cmp133.not.i, label %if.else211.i, label %if.then135.i
if.then135.i: ; preds = %if.end105.i
%call.i440.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %call132.i) #10
%66 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr.i441.i = getelementptr inbounds i8, ptr %66, i64 %call.i440.i
store ptr %add.ptr.i441.i, ptr @_P_nextchr, align 8, !tbaa !10
%conv4.i.i = trunc i64 %call.i440.i to i32
store i32 %conv4.i.i, ptr @_P_stringsize, align 4, !tbaa !5
%end.i442.i = getelementptr inbounds %struct._W_litstruct, ptr %call132.i, i64 0, i32 1
%67 = load i8, ptr %end.i442.i, align 1, !tbaa !9
%cmp.i443.i = icmp eq i8 %67, 0
br i1 %cmp.i443.i, label %_P_litsnarf.exit.i, label %while.body.preheader.i445.i
while.body.preheader.i445.i: ; preds = %if.then135.i
%escape.i444.i = getelementptr inbounds %struct._W_litstruct, ptr %call132.i, i64 0, i32 2
br label %while.body.i447.i
while.body.i447.i: ; preds = %while.body.backedge.i458.i, %while.body.preheader.i445.i
%68 = phi ptr [ %82, %while.body.backedge.i458.i ], [ %add.ptr.i441.i, %while.body.preheader.i445.i ]
%69 = load i8, ptr %68, align 1, !tbaa !9
%cmp.i.i446.i = icmp eq i8 %69, 0
br i1 %cmp.i.i446.i, label %if.then9.i.i, label %if.end21.i.i
if.then9.i.i: ; preds = %while.body.i447.i
%call10.i.i = call fastcc i32 @_P_nextline(), !range !12
%tobool11.not.i.i = icmp eq i32 %call10.i.i, 0
br i1 %tobool11.not.i.i, label %if.end13.i.i, label %_P_litsnarf.exit.loopexit.i
if.end13.i.i: ; preds = %if.then9.i.i
%.b.i448.i = load i1, ptr @_P_has_content, align 4
br i1 %.b.i448.i, label %if.end21.i.i, label %if.then15.i.i
if.then15.i.i: ; preds = %if.end13.i.i
%call16.i.i = call i32 (ptr, ...) @W_is_lit(ptr noundef nonnull %call132.i) #9
%tobool17.not.i.i = icmp eq i32 %call16.i.i, 0
br i1 %tobool17.not.i.i, label %_P_litsnarf.exit.loopexit.i, label %if.end21.i.i
if.end21.i.i: ; preds = %if.then15.i.i, %if.end13.i.i, %while.body.i447.i
%70 = load i8, ptr %escape.i444.i, align 1, !tbaa !9
%cmp24.not.i.i = icmp eq i8 %70, 0
br i1 %cmp24.not.i.i, label %if.end58.i.i, label %land.lhs.true.i450.i
land.lhs.true.i450.i: ; preds = %if.end21.i.i
%71 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call28.i449.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %71, ptr noundef nonnull %escape.i444.i) #9
%tobool29.not.i.i = icmp eq i32 %call28.i449.i, 0
br i1 %tobool29.not.i.i, label %land.lhs.true30.i.i, label %if.end58.i.i
land.lhs.true30.i.i: ; preds = %land.lhs.true.i450.i
%72 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call33.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i444.i) #10
%add.ptr34.i.i = getelementptr inbounds i8, ptr %72, i64 %call33.i.i
%call37.i451.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %add.ptr34.i.i, ptr noundef nonnull %end.i442.i) #9
%tobool38.not.i.i = icmp eq i32 %call37.i451.i, 0
br i1 %tobool38.not.i.i, label %if.then39.i.i, label %if.end58.i.i
if.then39.i.i: ; preds = %land.lhs.true30.i.i
%call42.i.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %escape.i444.i) #10
%call45.i452.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i442.i) #10
%add46.i.i = add i64 %call45.i452.i, %call42.i.i
%73 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr47.i.i = getelementptr inbounds i8, ptr %73, i64 %add46.i.i
store ptr %add.ptr47.i.i, ptr @_P_nextchr, align 8, !tbaa !10
%74 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%75 = trunc i64 %add46.i.i to i32
%conv57.i.i = add i32 %74, %75
br label %while.body.backedge.i458.i
if.end58.i.i: ; preds = %land.lhs.true30.i.i, %land.lhs.true.i450.i, %if.end21.i.i
%76 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%call61.i453.i = call i32 (ptr, ptr, ...) @S_wordcmp(ptr noundef %76, ptr noundef nonnull %end.i442.i) #9
%tobool62.not.i454.i = icmp eq i32 %call61.i453.i, 0
br i1 %tobool62.not.i454.i, label %if.then63.i.i, label %if.end74.i.i
if.then63.i.i: ; preds = %if.end58.i.i
%call66.i455.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %end.i442.i) #10
%77 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%add.ptr67.i.i = getelementptr inbounds i8, ptr %77, i64 %call66.i455.i
store ptr %add.ptr67.i.i, ptr @_P_nextchr, align 8, !tbaa !10
%78 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%79 = trunc i64 %call66.i455.i to i32
%conv73.i.i = add i32 %78, %79
store i32 %conv73.i.i, ptr @_P_stringsize, align 4, !tbaa !5
br label %_P_litsnarf.exit.i
if.end74.i.i: ; preds = %if.end58.i.i
%80 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%incdec.ptr.i456.i = getelementptr inbounds i8, ptr %80, i64 1
store ptr %incdec.ptr.i456.i, ptr @_P_nextchr, align 8, !tbaa !10
%81 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%inc.i457.i = add nsw i32 %81, 1
br label %while.body.backedge.i458.i
while.body.backedge.i458.i: ; preds = %if.end74.i.i, %if.then39.i.i
%82 = phi ptr [ %incdec.ptr.i456.i, %if.end74.i.i ], [ %add.ptr47.i.i, %if.then39.i.i ]
%storemerge.i.i = phi i32 [ %inc.i457.i, %if.end74.i.i ], [ %conv57.i.i, %if.then39.i.i ]
store i32 %storemerge.i.i, ptr @_P_stringsize, align 4, !tbaa !5
br label %while.body.i447.i
_P_litsnarf.exit.loopexit.i: ; preds = %if.then15.i.i, %if.then9.i.i
%retval.0.i459.ph.i = phi i32 [ 0, %if.then15.i.i ], [ 1, %if.then9.i.i ]
%.pre497.i = load i32, ptr @_P_stringsize, align 4, !tbaa !5
br label %_P_litsnarf.exit.i
_P_litsnarf.exit.i: ; preds = %_P_litsnarf.exit.loopexit.i, %if.then63.i.i, %if.then135.i
%83 = phi i32 [ %conv73.i.i, %if.then63.i.i ], [ %conv4.i.i, %if.then135.i ], [ %.pre497.i, %_P_litsnarf.exit.loopexit.i ]
%retval.0.i459.i = phi i32 [ 0, %if.then63.i.i ], [ 0, %if.then135.i ], [ %retval.0.i459.ph.i, %_P_litsnarf.exit.loopexit.i ]
%type.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 2
store i32 1, ptr %type.i, align 8, !tbaa !18
call void (ptr, i32, ...) @S_allocstr(ptr noundef nonnull %ptr.i, i32 noundef %83) #9
%84 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool137.not.i = icmp eq i32 %84, 0
%85 = load i32, ptr @_L_bclm, align 4
%86 = load i32, ptr @_L_aclm, align 4
%cond141.i = select i1 %tobool137.not.i, i32 %86, i32 %85
%cmp142.i = icmp sgt i32 %cond141.i, %cond124.i
%87 = load ptr, ptr %ptr.i, align 8, !tbaa !10
%idxprom152.i = sext i32 %cond124.i to i64
%_L_aclindex._L_bclindex508.i = select i1 %tobool137.not.i, ptr @_L_aclindex, ptr @_L_bclindex
%_L_al._L_bl.i = select i1 %tobool137.not.i, ptr @_L_al, ptr @_L_bl
%arrayidx153.i = getelementptr inbounds [0 x i32], ptr %_L_aclindex._L_bclindex508.i, i64 0, i64 %idxprom152.i
%88 = load i32, ptr %arrayidx153.i, align 4, !tbaa !5
%idxprom154.i = sext i32 %88 to i64
%arrayidx155.i = getelementptr inbounds [0 x ptr], ptr %_L_al._L_bl.i, i64 0, i64 %idxprom154.i
%cond157.i = load ptr, ptr %arrayidx155.i, align 8, !tbaa !10
%sext480.i = shl i64 %sub.ptr.sub.i, 32
%idx.ext.i = ashr exact i64 %sext480.i, 32
%add.ptr.i = getelementptr inbounds i8, ptr %cond157.i, i64 %idx.ext.i
br i1 %cmp142.i, label %if.then144.i, label %if.else.i
if.then144.i: ; preds = %_P_litsnarf.exit.i
%call158.i = call ptr @strcpy(ptr noundef nonnull dereferenceable(1) %87, ptr noundef nonnull dereferenceable(1) %add.ptr.i) #9
%tmp.0489.i = add nsw i32 %cond124.i, 1
%cmp159490.i = icmp slt i32 %tmp.0489.i, %cond141.i
br i1 %cmp159490.i, label %for.body.preheader.i, label %for.end.i
for.body.preheader.i: ; preds = %if.then144.i
%89 = sext i32 %tmp.0489.i to i64
br label %for.body.i
for.body.i: ; preds = %for.body.i, %for.body.preheader.i
%indvars.iv.i = phi i64 [ %89, %for.body.preheader.i ], [ %indvars.iv.next.i, %for.body.i ]
%90 = load ptr, ptr %ptr.i, align 8, !tbaa !10
%91 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool161.not.i = icmp eq i32 %91, 0
%_L_aclindex._L_bclindex509.i = select i1 %tobool161.not.i, ptr @_L_aclindex, ptr @_L_bclindex
%_L_al._L_bl510.i = select i1 %tobool161.not.i, ptr @_L_al, ptr @_L_bl
%arrayidx169.i = getelementptr inbounds [0 x i32], ptr %_L_aclindex._L_bclindex509.i, i64 0, i64 %indvars.iv.i
%92 = load i32, ptr %arrayidx169.i, align 4, !tbaa !5
%idxprom170.i = sext i32 %92 to i64
%arrayidx171.i = getelementptr inbounds [0 x ptr], ptr %_L_al._L_bl510.i, i64 0, i64 %idxprom170.i
%cond173.i = load ptr, ptr %arrayidx171.i, align 8, !tbaa !10
%call174.i = call ptr @strcat(ptr noundef nonnull dereferenceable(1) %90, ptr noundef nonnull dereferenceable(1) %cond173.i) #9
%indvars.iv.next.i = add nsw i64 %indvars.iv.i, 1
%lftr.wideiv.i = trunc i64 %indvars.iv.next.i to i32
%exitcond.not.i = icmp eq i32 %cond141.i, %lftr.wideiv.i
br i1 %exitcond.not.i, label %for.end.i, label %for.body.i, !llvm.loop !19
for.end.i: ; preds = %for.body.i, %if.then144.i
%93 = load ptr, ptr %ptr.i, align 8, !tbaa !10
%94 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool175.not.i = icmp eq i32 %94, 0
%idxprom182.i = sext i32 %cond141.i to i64
%_L_aclindex._L_bclindex511.i = select i1 %tobool175.not.i, ptr @_L_aclindex, ptr @_L_bclindex
%_L_al._L_bl512.i = select i1 %tobool175.not.i, ptr @_L_al, ptr @_L_bl
%arrayidx183.i = getelementptr inbounds [0 x i32], ptr %_L_aclindex._L_bclindex511.i, i64 0, i64 %idxprom182.i
%95 = load i32, ptr %arrayidx183.i, align 4, !tbaa !5
%idxprom184.i = sext i32 %95 to i64
%arrayidx185.i = getelementptr inbounds [0 x ptr], ptr %_L_al._L_bl512.i, i64 0, i64 %idxprom184.i
%cond187.i = load ptr, ptr %arrayidx185.i, align 8, !tbaa !10
%96 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%conv188.i = sext i32 %96 to i64
%call189.i = call i64 @strlen(ptr noundef nonnull dereferenceable(1) %93) #10
%sub.i = sub i64 %conv188.i, %call189.i
%call190.i = call ptr @strncat(ptr noundef nonnull dereferenceable(1) %93, ptr noundef %cond187.i, i64 noundef %sub.i) #9
br label %if.end210.i
if.else.i: ; preds = %_P_litsnarf.exit.i
%97 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%conv206.i = sext i32 %97 to i64
%call207.i = call ptr @strncpy(ptr noundef %87, ptr noundef %add.ptr.i, i64 noundef %conv206.i) #9
%98 = load ptr, ptr %ptr.i, align 8, !tbaa !10
%99 = load i32, ptr @_P_stringsize, align 4, !tbaa !5
%idxprom208.i = sext i32 %99 to i64
%arrayidx209.i = getelementptr inbounds i8, ptr %98, i64 %idxprom208.i
store i8 0, ptr %arrayidx209.i, align 1, !tbaa !9
br label %if.end210.i
if.end210.i: ; preds = %if.else.i, %for.end.i
%100 = load ptr, ptr %ptr.i, align 8, !tbaa !10
%text.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 3
store ptr %100, ptr %text.i, align 8, !tbaa !21
br label %if.end307.i
if.else211.i: ; preds = %if.end105.i
%101 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%102 = load i32, ptr @_P_flags, align 4, !tbaa !5
%and212.i = and i32 %102, 32
%and213.i = and i32 %102, 16
%call214.i = call i32 @F_isfloat(ptr noundef %101, i32 noundef %and212.i, i32 noundef %and213.i) #9
%cmp215.not.i = icmp eq i32 %call214.i, 0
br i1 %cmp215.not.i, label %if.else234.i, label %if.then217.i
if.then217.i: ; preds = %if.else211.i
%text218.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 3
%103 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
call void (ptr, ptr, i32, ...) @S_savenstr(ptr noundef nonnull %text218.i, ptr noundef %103, i32 noundef %call214.i) #9
%type219.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 2
store i32 2, ptr %type219.i, align 8, !tbaa !18
%104 = load i32, ptr @_P_flags, align 4, !tbaa !5
%and220.i = and i32 %104, 2
%tobool221.not.i = icmp eq i32 %and220.i, 0
br i1 %tobool221.not.i, label %if.then222.i, label %if.end226.i
if.then222.i: ; preds = %if.then217.i
%105 = load ptr, ptr %text218.i, align 8, !tbaa !21
%call224.i = call ptr (ptr, i32, ...) @F_atof(ptr noundef %105, i32 noundef 1) #9
%flo_num.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 4
store ptr %call224.i, ptr %flo_num.i, align 8, !tbaa !22
%106 = load i32, ptr @_P_next_tol, align 4, !tbaa !5
%call225.i = call ptr (i32, ...) @T_gettol(i32 noundef %106) #9
%tolerance.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 5
store ptr %call225.i, ptr %tolerance.i, align 8, !tbaa !23
br label %if.end226.i
if.end226.i: ; preds = %if.then222.i, %if.then217.i
%107 = load i32, ptr @_P_next_tol, align 4, !tbaa !5
%call227.i = call i32 @T_moretols(i32 noundef %107) #9
%tobool228.not.i = icmp eq i32 %call227.i, 0
br i1 %tobool228.not.i, label %if.end231.i, label %if.then229.i
if.then229.i: ; preds = %if.end226.i
%108 = load i32, ptr @_P_next_tol, align 4, !tbaa !5
%inc230.i = add nsw i32 %108, 1
store i32 %inc230.i, ptr @_P_next_tol, align 4, !tbaa !5
br label %if.end231.i
if.end231.i: ; preds = %if.then229.i, %if.end226.i
%109 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%idx.ext232.i = sext i32 %call214.i to i64
%add.ptr233.i = getelementptr inbounds i8, ptr %109, i64 %idx.ext232.i
store ptr %add.ptr233.i, ptr @_P_nextchr, align 8, !tbaa !10
br label %if.end307.i
if.else234.i: ; preds = %if.else211.i
%call235.i = tail call ptr @__ctype_b_loc() #11
%110 = load ptr, ptr %call235.i, align 8, !tbaa !10
%111 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%112 = load i8, ptr %111, align 1, !tbaa !9
%idxprom237.i = sext i8 %112 to i64
%arrayidx238.i = getelementptr inbounds i16, ptr %110, i64 %idxprom237.i
%113 = load i16, ptr %arrayidx238.i, align 2, !tbaa !13
%conv239.i = zext i16 %113 to i32
%and240.i = and i32 %conv239.i, 2048
%tobool241.not.i = icmp eq i32 %and240.i, 0
br i1 %tobool241.not.i, label %if.else260.i, label %for.cond243.i
for.cond243.i: ; preds = %if.else234.i, %for.cond243.i
%storemerge479.i = phi ptr [ %incdec.ptr253.i, %for.cond243.i ], [ %111, %if.else234.i ]
store ptr %storemerge479.i, ptr %ptr.i, align 8, !tbaa !10
%114 = load ptr, ptr %call235.i, align 8, !tbaa !10
%115 = load i8, ptr %storemerge479.i, align 1, !tbaa !9
%idxprom246.i = sext i8 %115 to i64
%arrayidx247.i = getelementptr inbounds i16, ptr %114, i64 %idxprom246.i
%116 = load i16, ptr %arrayidx247.i, align 2, !tbaa !13
%117 = and i16 %116, 2048
%tobool250.not.i = icmp eq i16 %117, 0
%incdec.ptr253.i = getelementptr inbounds i8, ptr %storemerge479.i, i64 1
br i1 %tobool250.not.i, label %for.end254.i, label %for.cond243.i, !llvm.loop !24
for.end254.i: ; preds = %for.cond243.i
%text255.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 3
%sub.ptr.lhs.cast256.i = ptrtoint ptr %storemerge479.i to i64
%sub.ptr.rhs.cast257.i = ptrtoint ptr %111 to i64
%sub.ptr.sub258.i = sub i64 %sub.ptr.lhs.cast256.i, %sub.ptr.rhs.cast257.i
call void (ptr, ptr, i64, ...) @S_savenstr(ptr noundef nonnull %text255.i, ptr noundef nonnull %111, i64 noundef %sub.ptr.sub258.i) #9
%type259.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 2
store i32 1, ptr %type259.i, align 8, !tbaa !18
%118 = load ptr, ptr %ptr.i, align 8, !tbaa !10
store ptr %118, ptr @_P_nextchr, align 8, !tbaa !10
br label %if.end307.i
if.else260.i: ; preds = %if.else234.i
%and266.i = and i32 %conv239.i, 1024
%tobool267.not.i = icmp eq i32 %and266.i, 0
br i1 %tobool267.not.i, label %lor.lhs.false.i, label %for.cond272.i.preheader
lor.lhs.false.i: ; preds = %if.else260.i
%cmp.i460.i = icmp eq i8 %112, 0
br i1 %cmp.i460.i, label %if.else300.i, label %_P_in_alpha.exit.i
_P_in_alpha.exit.i: ; preds = %lor.lhs.false.i
%conv.i.i = sext i8 %112 to i32
%call.i461.i = call ptr @index(ptr noundef nonnull @_P_alpha, i32 noundef %conv.i.i) #10
%119 = ptrtoint ptr %call.i461.i to i64
%120 = and i64 %119, 4294967295
%tobool270.not.i = icmp eq i64 %120, 0
br i1 %tobool270.not.i, label %if.else300.i, label %for.cond272.i.preheader
for.cond272.i.preheader: ; preds = %_P_in_alpha.exit.i, %if.else260.i
br label %for.cond272.i
for.cond272.i: ; preds = %for.cond272.i.preheader, %for.inc292.i
%storemerge.i = phi ptr [ %incdec.ptr293.i, %for.inc292.i ], [ %111, %for.cond272.i.preheader ]
store ptr %storemerge.i, ptr %ptr.i, align 8, !tbaa !10
%121 = load ptr, ptr %call235.i, align 8, !tbaa !10
%122 = load i8, ptr %storemerge.i, align 1, !tbaa !9
%idxprom275.i = sext i8 %122 to i64
%arrayidx276.i = getelementptr inbounds i16, ptr %121, i64 %idxprom275.i
%123 = load i16, ptr %arrayidx276.i, align 2, !tbaa !13
%124 = and i16 %123, 3072
%or.cond.i = icmp eq i16 %124, 0
br i1 %or.cond.i, label %lor.rhs.i, label %for.inc292.i
lor.rhs.i: ; preds = %for.cond272.i
%cmp.i464.i = icmp eq i8 %122, 0
br i1 %cmp.i464.i, label %for.end294.i, label %_P_in_alpha.exit469.i
_P_in_alpha.exit469.i: ; preds = %lor.rhs.i
%conv.i465.i = sext i8 %122 to i32
%call.i466.i = call ptr @index(ptr noundef nonnull @_P_alpha, i32 noundef %conv.i465.i) #10
%125 = ptrtoint ptr %call.i466.i to i64
%126 = and i64 %125, 4294967295
%tobool290.not.i = icmp eq i64 %126, 0
br i1 %tobool290.not.i, label %for.end294.i, label %for.inc292.i
for.inc292.i: ; preds = %_P_in_alpha.exit469.i, %for.cond272.i
%incdec.ptr293.i = getelementptr inbounds i8, ptr %storemerge.i, i64 1
br label %for.cond272.i, !llvm.loop !25
for.end294.i: ; preds = %_P_in_alpha.exit469.i, %lor.rhs.i
%text295.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 3
%sub.ptr.lhs.cast296.i = ptrtoint ptr %storemerge.i to i64
%sub.ptr.rhs.cast297.i = ptrtoint ptr %111 to i64
%sub.ptr.sub298.i = sub i64 %sub.ptr.lhs.cast296.i, %sub.ptr.rhs.cast297.i
call void (ptr, ptr, i64, ...) @S_savenstr(ptr noundef nonnull %text295.i, ptr noundef nonnull %111, i64 noundef %sub.ptr.sub298.i) #9
%type299.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 2
store i32 1, ptr %type299.i, align 8, !tbaa !18
%127 = load ptr, ptr %ptr.i, align 8, !tbaa !10
store ptr %127, ptr @_P_nextchr, align 8, !tbaa !10
br label %if.end307.i
if.else300.i: ; preds = %_P_in_alpha.exit.i, %lor.lhs.false.i
%text301.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 3
call void (ptr, ptr, i32, ...) @S_savenstr(ptr noundef nonnull %text301.i, ptr noundef nonnull %111, i32 noundef 1) #9
%type302.i = getelementptr inbounds %struct._K_str, ptr %call126.i, i64 0, i32 2
store i32 1, ptr %type302.i, align 8, !tbaa !18
%128 = load ptr, ptr @_P_nextchr, align 8, !tbaa !10
%incdec.ptr303.i = getelementptr inbounds i8, ptr %128, i64 1
store ptr %incdec.ptr303.i, ptr @_P_nextchr, align 8, !tbaa !10
br label %if.end307.i
if.end307.i: ; preds = %if.else300.i, %for.end294.i, %for.end254.i, %if.end231.i, %if.end210.i
%ret_code.0.i = phi i32 [ %retval.0.i459.i, %if.end210.i ], [ 0, %if.end231.i ], [ 0, %for.end254.i ], [ 0, %for.end294.i ], [ 0, %if.else300.i ]
%129 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool308.not.i = icmp eq i32 %129, 0
%130 = load i32, ptr @_K_btm, align 4
%131 = load i32, ptr @_K_atm, align 4
%cond312.i = select i1 %tobool308.not.i, i32 %131, i32 %130
call void (i32, i32, ptr, ...) @K_settoken(i32 noundef %129, i32 noundef %cond312.i, ptr noundef nonnull %call126.i) #9
%132 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool313.not.i = icmp eq i32 %132, 0
br i1 %tobool313.not.i, label %cond.false337.i, label %cond.true335.i
cond.true335.i: ; preds = %if.end307.i
%133 = load i32, ptr @_L_btlm, align 4
%idxprom320.i = sext i32 %133 to i64
%arrayidx321.i = getelementptr inbounds [0 x i32], ptr @_L_bc, i64 0, i64 %idxprom320.i
%134 = load i32, ptr %arrayidx321.i, align 4, !tbaa !5
%inc322.i = add nsw i32 %134, 1
store i32 %inc322.i, ptr %arrayidx321.i, align 4, !tbaa !5
%135 = load i32, ptr @_K_btm, align 4, !tbaa !5
%inc336.i = add nsw i32 %135, 1
store i32 %inc336.i, ptr @_K_btm, align 4, !tbaa !5
br label %cond.end339.i
cond.false337.i: ; preds = %if.end307.i
%136 = load i32, ptr @_L_atlm, align 4
%idxprom329.i = sext i32 %136 to i64
%arrayidx330.i = getelementptr inbounds [0 x i32], ptr @_L_ac, i64 0, i64 %idxprom329.i
%137 = load i32, ptr %arrayidx330.i, align 4, !tbaa !5
%inc331.i = add nsw i32 %137, 1
store i32 %inc331.i, ptr %arrayidx330.i, align 4, !tbaa !5
%138 = load i32, ptr @_K_atm, align 4, !tbaa !5
%inc338.i = add nsw i32 %138, 1
store i32 %inc338.i, ptr @_K_atm, align 4, !tbaa !5
br label %cond.end339.i
cond.end339.i: ; preds = %cond.false337.i, %cond.true335.i
%cond340.i = phi i32 [ %inc336.i, %cond.true335.i ], [ %inc338.i, %cond.false337.i ]
%cmp341.i = icmp sgt i32 %cond340.i, 49999
br i1 %cmp341.i, label %if.then343.i, label %if.end345.i
if.then343.i: ; preds = %cond.end339.i
%call344.i = call i32 (ptr, ptr, ...) @sprintf(ptr noundef nonnull dereferenceable(1) @Z_err_buf, ptr noundef nonnull dereferenceable(1) @.str.2, i32 noundef 50000) #9
call void (ptr, ...) @Z_complain(ptr noundef nonnull @Z_err_buf) #9
br label %_P_do_parse.exit
if.end345.i: ; preds = %cond.end339.i
%139 = load i32, ptr @_K_btm, align 4
%140 = load i32, ptr @_K_atm, align 4
%cond350.i = select i1 %tobool313.not.i, i32 %140, i32 %139
%rem.i = srem i32 %cond350.i, 1000
%cmp351.i = icmp eq i32 %rem.i, 0
br i1 %cmp351.i, label %if.then353.i, label %if.end361.i
if.then353.i: ; preds = %if.end345.i
%add359.i = add nsw i32 %132, 1
%call360.i = call i32 (ptr, ptr, ...) @sprintf(ptr noundef nonnull dereferenceable(1) @Z_err_buf, ptr noundef nonnull dereferenceable(1) @.str.3, i32 noundef %cond350.i, i32 noundef %add359.i) #9
call void (ptr, ...) @Z_chatter(ptr noundef nonnull @Z_err_buf) #9
br label %if.end361.i
if.end361.i: ; preds = %if.then353.i, %if.end345.i
%tobool362.not.i = icmp eq i32 %ret_code.0.i, 0
br i1 %tobool362.not.i, label %while.cond.backedge.i, label %_P_do_parse.exit
_P_do_parse.exit: ; preds = %if.then.i, %if.end361.i, %if.then4.i.i, %if.end47.i.i, %if.then343.i
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %ptr.i) #9
%.b = load i1, ptr @_P_has_content, align 4
br i1 %.b, label %if.then, label %if.end47
if.then: ; preds = %_P_do_parse.exit
call void @llvm.memcpy.p0.p0.i64(ptr noundef nonnull align 1 dereferenceable(36) @Z_err_buf, ptr noundef nonnull align 1 dereferenceable(36) @.str.1, i64 36, i1 false)
call void (ptr, ...) @Z_complain(ptr noundef nonnull @Z_err_buf) #9
%141 = load i32, ptr @_P_fnumb, align 4, !tbaa !5
%tobool14.not = icmp eq i32 %141, 0
br i1 %tobool14.not, label %cond.false30, label %cond.true21
cond.true21: ; preds = %if.then
%142 = load i32, ptr @_L_bclm, align 4, !tbaa !5
%inc = add nsw i32 %142, 1
store i32 %inc, ptr @_L_bclm, align 4, !tbaa !5
%143 = load i32, ptr @_L_btlm, align 4
%idxprom27 = sext i32 %143 to i64
%arrayidx28 = getelementptr inbounds [0 x i32], ptr @_L_bc, i64 0, i64 %idxprom27
%144 = load i32, ptr %arrayidx28, align 4, !tbaa !5
%tobool29.not = icmp eq i32 %144, 0
br i1 %tobool29.not, label %if.end47, label %if.end47.sink.split
cond.false30: ; preds = %if.then
%145 = load i32, ptr @_L_aclm, align 4, !tbaa !5
%inc17 = add nsw i32 %145, 1
store i32 %inc17, ptr @_L_aclm, align 4, !tbaa !5
%146 = load i32, ptr @_L_atlm, align 4
%idxprom36 = sext i32 %146 to i64
%arrayidx37 = getelementptr inbounds [0 x i32], ptr @_L_ac, i64 0, i64 %idxprom36
%147 = load i32, ptr %arrayidx37, align 4, !tbaa !5
%tobool38.not = icmp eq i32 %147, 0
br i1 %tobool38.not, label %if.end47, label %if.end47.sink.split
if.end47.sink.split: ; preds = %cond.false30, %cond.true21
%.sink = phi i32 [ %143, %cond.true21 ], [ %146, %cond.false30 ]
%_L_atlm.sink60 = phi ptr [ @_L_btlm, %cond.true21 ], [ @_L_atlm, %cond.false30 ]
%inc44 = add nsw i32 %.sink, 1
store i32 %inc44, ptr %_L_atlm.sink60, align 4, !tbaa !5
br label %if.end47
if.end47: ; preds = %if.end47.sink.split, %cond.true21, %cond.false30, %_P_do_parse.exit
ret void
}
; Function Attrs: nofree nounwind
declare noundef i32 @sprintf(ptr noalias nocapture noundef writeonly, ptr nocapture noundef readonly, ...) local_unnamed_addr #5
declare void @Z_complain(...) local_unnamed_addr #2
declare void @C_clear_cmd(...) local_unnamed_addr #2
declare void @T_clear_tols(...) local_unnamed_addr #2
declare void @W_clearcoms(...) local_unnamed_addr #2
declare void @W_clearlits(...) local_unnamed_addr #2
declare void @C_docmds(...) local_unnamed_addr #2
declare ptr @W_isbol(...) local_unnamed_addr #2
; Function Attrs: mustprogress nofree nosync nounwind willreturn memory(none)