diff options
| author | Michael Liao <michael.hliao@gmail.com> | 2019-10-03 17:47:46 +0000 |
|---|---|---|
| committer | Michael Liao <michael.hliao@gmail.com> | 2019-10-03 17:47:46 +0000 |
| commit | 9c1503f66992a4d49ce0080a39a29b5e016e59f6 (patch) | |
| tree | 6ed4f6e6f0603e8ef7425d189aebbc9d1c33feeb | |
| parent | 1fff2881a8665aa23d29a46ec41eec7577d11364 (diff) | |
| download | bcm5719-llvm-9c1503f66992a4d49ce0080a39a29b5e016e59f6.tar.gz bcm5719-llvm-9c1503f66992a4d49ce0080a39a29b5e016e59f6.zip | |
Fix build failure with GCC on identifier reusing.
- GCC is different from clang and other compilers on that.
https://godbolt.org/z/CeQE1V
llvm-svn: 373633
| -rw-r--r-- | llvm/tools/dsymutil/dsymutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/dsymutil/dsymutil.cpp b/llvm/tools/dsymutil/dsymutil.cpp index b5259a2f5d6..aa23891ab39 100644 --- a/llvm/tools/dsymutil/dsymutil.cpp +++ b/llvm/tools/dsymutil/dsymutil.cpp @@ -95,7 +95,7 @@ struct DsymutilOptions { std::vector<std::string> Archs; std::vector<std::string> InputFiles; unsigned NumThreads; - LinkOptions LinkOptions; + dsymutil::LinkOptions LinkOptions; }; /// Return a list of input files. This function has logic for dealing with the |

