mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-05 08:58:30 +00:00
978be4c1a3
Change in r337953 violated the contract for `CXTranslationUnit_KeepGoing`: > Do not stop processing when fatal errors are encountered. Use different approach to fix long processing times with multiple inclusion cycles. Instead of stopping preprocessing for fatal errors, do this after reaching the max allowed include depth and only for the files that were processed already. It is likely but not guaranteed those files cause a cycle. rdar://problem/46108547 Reviewers: erik.pilkington, arphaman Reviewed By: erik.pilkington Subscribers: jkorous, dexonsmith, ilya-biryukov, Dmitry.Kozhevnikov Differential Revision: https://reviews.llvm.org/D55095 llvm-svn: 348641
11 lines
414 B
C
11 lines
414 B
C
#include "cycle.h"
|
|
#include "foo.h"
|
|
|
|
// RUN: env CINDEXTEST_KEEP_GOING=1 c-index-test -test-print-type -I%S/Inputs %s 2> %t.stderr.txt | FileCheck %s
|
|
// RUN: FileCheck -check-prefix CHECK-DIAG %s < %t.stderr.txt
|
|
|
|
// Verify that we don't stop preprocessing after an include cycle.
|
|
// CHECK: VarDecl=global_var:1:12 [type=int] [typekind=Int] [isPOD=1]
|
|
|
|
// CHECK-DIAG: cycle.h:1:10: error: #include nested too deeply
|