1# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -info-plist - | FileCheck %s
2# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -info-plist -no-leading-headers - | FileCheck --check-prefix=NOHEADER %s
3
4.section __TEXT, __info_plist
5.asciz "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
6
7# CHECK: Contents of (__TEXT,__info_plist) section
8# CHECK: <?xml version="1.0" encoding="UTF-8"?>
9
10# NOHEADER-NOT: Contents of (__TEXT,__info_plist) section
11# NOHEADER: <?xml version="1.0" encoding="UTF-8"?>
12