diff options
author | Aaron Puchert <aaron.puchert@sap.com> | 2019-06-15 14:07:43 +0000 |
---|---|---|
committer | Aaron Puchert <aaron.puchert@sap.com> | 2019-06-15 14:07:43 +0000 |
commit | 922759a63d7d8edbc47578b4718a38765093d24e (patch) | |
tree | 9122cfc2fe8f4450b9e4f27341203b37c006377d /clang/test/Driver/split-debug.s | |
parent | 83c7b61052bd46fac08a69a8f61ac56eba6d7ffc (diff) | |
download | bcm5719-llvm-922759a63d7d8edbc47578b4718a38765093d24e.tar.gz bcm5719-llvm-922759a63d7d8edbc47578b4718a38765093d24e.zip |
[Clang] Rename -split-dwarf-file to -split-dwarf-output
Summary:
This is the first in a series of changes trying to align clang -cc1
flags for Split DWARF with those of llc. The unfortunate side effect of
having -split-dwarf-output for single file Split DWARF will disappear
again in a subsequent change.
The change is the result of a discussion in D59673.
Reviewers: dblaikie, echristo
Reviewed By: dblaikie
Differential Revision: https://reviews.llvm.org/D63130
llvm-svn: 363494
Diffstat (limited to 'clang/test/Driver/split-debug.s')
-rw-r--r-- | clang/test/Driver/split-debug.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/split-debug.s b/clang/test/Driver/split-debug.s index ece64cc0ad1..8ba777c8c02 100644 --- a/clang/test/Driver/split-debug.s +++ b/clang/test/Driver/split-debug.s @@ -3,9 +3,9 @@ // RUN: %clang -target x86_64-unknown-linux-gnu -gsplit-dwarf -c -### %s 2> %t // RUN: FileCheck -check-prefix=CHECK-ACTIONS < %t %s // -// CHECK-ACTIONS: "-split-dwarf-file" "split-debug.dwo" +// CHECK-ACTIONS: "-split-dwarf-output" "split-debug.dwo" -// Check we pass -split-dwarf-file to `as` if -gsplit-dwarf=split. +// Check we pass -split-dwarf-output to `as` if -gsplit-dwarf=split. // RUN: %clang -target x86_64-unknown-linux-gnu -gsplit-dwarf=split -c -### %s 2> %t // RUN: FileCheck -check-prefix=CHECK-ACTIONS < %t %s |