Recommit "rL366894: [yaml2obj] - Allow custom fields for the SHT_UNDEF sections."
[llvm-complete.git] / test / tools / llvm-objdump / X86 / source-interleave-invalid-source.test
blobe958173d16e90d7d4907c2f2f6fbf9c7321a25c0
1 ## Test llvm-objdump's --source behaviour when a line number is greater than the
2 ## file length.
4 # RUN: sed -e "s,SRC_COMPDIR,%/p/Inputs,g" %p/Inputs/source-interleave.ll > %t.ll
5 # RUN: sed -e "s,line: 7,line: 9999,g" %t.ll > %t2.ll
7 # RUN: llc -o %t.o -filetype=obj -mtriple=x86_64-pc-linux %t.ll
8 # RUN: llc -o %t2.o -filetype=obj -mtriple=x86_64-pc-linux %t2.ll
10 # RUN: llvm-objdump --source %t.o | FileCheck %s --check-prefixes=CHECK,GOOD
11 # RUN: llvm-objdump --source %t2.o | FileCheck %s --implicit-check-not="int *b = &a;"
13 # CHECK:      main:
14 # CHECK-NEXT: ; int main() {
15 # GOOD:       ;   int *b = &a;
16 # CHECK:      ;   return *b + foo();