brintos

brintos / llvm-project-archived public Read only

0
0
Text · 332 B · afec024 Raw
17 lines · c
1// RUN: %clang_cc1 -triple x86_64 -emit-llvm %s -o /dev/null2 3// This test should not exhibit use-after-free in LoopInfo.4 5int a(void) {6  for (;;)7    for (;;)8      for (;;)9        for (;;)10          for (;;)11            for (;;)12              for (;;)13                for (;;)14                  for (;;)15                    ;16}17