[LLVMbugs] [Bug 16051] New: Segmentation fault on cyclical recursive include

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Fri May 17 04:54:43 PDT 2013


http://llvm.org/bugs/show_bug.cgi?id=16051

            Bug ID: 16051
           Summary: Segmentation fault on cyclical recursive include
           Product: clang
           Version: 3.2
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
          Assignee: unassignedclangbugs at nondot.org
          Reporter: denis.varin at gmail.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

Create 4 files:
1) 1.c:
#include "1.h"
2) 1.h
#include "2.h"
3) 2.h
#include "not_exist.h"
#include "3.h"
4)3.h
#include "3.h"
#include "1.h"

Run clang:
clang 1.c

Output:
clang: error: unable to execute command: Segmentation fault (core dumped)
clang: error: clang frontend command failed due to signal 2 (use -v to see
invocation)
clang: note: diagnostic msg: Please submit a bug report to
http://llvm.org/bugs/ and include command line arguments and all diagnostic
information.
clang: error: unable to execute command: Segmentation fault (core dumped)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20130517/7a7bbd29/attachment.html>


More information about the llvm-bugs mailing list