diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-17 21:32:42 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-17 21:32:42 +0000 |
commit | 6c31d313575bba1b87b583260f39f0b0dae143f4 (patch) | |
tree | f51bbd65f53587671d77034d5d65ad0ee8506afe /test/MC/ELF | |
parent | c83b8fec01565df67da45f437ca1311f7286e53b (diff) |
Prepare LLVM to fix PR14625, exposing a hook in MCContext to manage the
compilation directory.
This defaults to the current working directory, just as it always has,
but now an assembler can choose to override it with a custom directory.
I've taught llvm-mc about this option and added a test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170371 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF')
-rw-r--r-- | test/MC/ELF/comp-dir.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/MC/ELF/comp-dir.s b/test/MC/ELF/comp-dir.s new file mode 100644 index 0000000000..2c7de4ca31 --- /dev/null +++ b/test/MC/ELF/comp-dir.s @@ -0,0 +1,7 @@ +// RUN: llvm-mc -g -fdebug-compilation-dir=/test/comp/dir %s -filetype=obj -o %t.o +// RUN: llvm-dwarfdump %t.o | FileCheck %s + +// CHECK: DW_AT_comp_dir [DW_FORM_string] ("/test/comp/dir") + +f: + nop |