brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · d583639 Raw
27 lines · plain
1# RUN: not llvm-mc -triple x86_64-unknown-unknown -dwarf-version 5 -filetype=asm %s -o /dev/null 2>&1 | FileCheck %s2# RUN: not llvm-mc -triple x86_64-unknown-unknown -dwarf-version 5 -filetype=obj %s -o /dev/null 2>&1 | FileCheck %s3 4# This is syntactically legal, looks like no checksum provided.5# CHECK-NOT: [[@LINE+1]]:{{[0-9]+}}: error:6        .file 1 "dir1/foo" "00112233445566778899aabbccddeeff"7 8# Missing md5 keyword.9# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: unexpected token in '.file' directive10        .file 2 "dir1" "foo" 0x00112233445566778899aabbccddeeff11 12# Bad syntax.13# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: unknown token in expression14        .file 3 "dir2" "bar" md5 "ff"15 16# No hex prefix.17# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: unknown token in expression18        .file 4 "dir3" "foo" md5 ffeeddccbbaa9988776655443322110019 20# Non-DWARF .file syntax with checksum.21# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: MD5 checksum specified, but no file number22        .file "baz" md5 0xffeeddccbbaa9988776655443322110023 24# Inconsistent use of MD5 option. Note: .file 1 did not supply one.25# CHECK: [[@LINE+1]]:{{[0-9]+}}: warning: inconsistent use of MD5 checksums26        .file 5 "bax" md5 0xffeeddccbbaa9988776655443322110027