• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not llvm-mc -triple x86_64-unknown-unknown -dwarf-version 5 -filetype=asm %s -o /dev/null 2>&1 | FileCheck %s
2# RUN: not llvm-mc -triple x86_64-unknown-unknown -dwarf-version 5 -filetype=obj %s -o /dev/null 2>&1 | FileCheck %s
3
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' directive
10        .file 2 "dir1" "foo" 0x00112233445566778899aabbccddeeff
11
12# Bad syntax.
13# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: unknown token in expression
14        .file 3 "dir2" "bar" md5 "ff"
15
16# No hex prefix.
17# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: unknown token in expression
18        .file 4 "dir3" "foo" md5 ffeeddccbbaa99887766554433221100
19
20# Non-DWARF .file syntax with checksum.
21# CHECK: [[@LINE+1]]:{{[0-9]+}}: error: MD5 checksum specified, but no file number
22        .file "baz" md5 0xffeeddccbbaa99887766554433221100
23
24# Inconsistent use of MD5 option. Note: .file 1 did not supply one.
25# CHECK: [[@LINE+1]]:{{[0-9]+}}: warning: inconsistent use of MD5 checksums
26        .file 5 "bax" md5 0xffeeddccbbaa99887766554433221100
27