diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/file-directive.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/file-directive.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/file-directive.ll b/llvm/test/CodeGen/X86/file-directive.ll new file mode 100644 index 00000000000..4b25a0909ea --- /dev/null +++ b/llvm/test/CodeGen/X86/file-directive.ll @@ -0,0 +1,13 @@ +; RUN: llc -mtriple=x86_64-linux-gnu -filetype=asm < %s | FileCheck %s --check-prefix=DIRECTIVE +; RUN: llc -mtriple=x86_64-linux-gnu -filetype=obj < %s | llvm-readobj -symbols | FileCheck %s --check-prefix=STT-FILE + +; DIRECTIVE: .file "foobar" +; STT-FILE: Name: foobar +; STT-FILE-NEXT: Value: 0x0 +; STT-FILE-NEXT: Size: 0 +; STT-FILE-NEXT: Binding: Local +; STT-FILE-NEXT: Type: File +; STT-FILE-NEXT: Other: 0 +; STT-FILE-NEXT: Section: Absolute + +source_filename = "/path/to/foobar" |

