1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00
llvm-mirror/test/tools/llvm-readobj/codeview-merging-cycle.test
Reid Kleckner 1a39114e26 [codeview] Cope with unsorted streams in type merging
Summary:
MASM can produce type streams that are not topologically sorted. It can
even produce type streams with circular references, but those are not
common in practice.

Reviewers: inglorion, ruiu

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D31629

llvm-svn: 299403
2017-04-03 23:58:15 +00:00

20 lines
480 B
Plaintext

; RUN: not llvm-readobj -codeview-merged-types %S/Inputs/codeview-cycle.obj 2>&1 | FileCheck %s
; CHECK: Error{{.*}} input type graph contains cycles
; To reproduce codeview-cycle.obj:
; $ cat codeview-cycle.asm
; .model flat, C
; .code
; pfoo_list TYPEDEF PTR foo_list
; foo_list STRUCT
; next pfoo_list ?
; data dd ?
; foo_list ENDS
; public foo
; foo proc dst:ptr foo_list
; ret
; foo endp
; end
; $ ml -c -Zi codeview-cycle.asm