diff options
| author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-08-06 21:37:45 +0000 |
|---|---|---|
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-08-06 21:37:45 +0000 |
| commit | f1935d55dc80d3e8b98e7cf56f81f607e817be82 (patch) | |
| tree | 24d2d1f489f5c3dfd5d17397b8600ebf981d17c4 | |
| parent | 5d7eaaf983652090fae2774b49b2010238ee79c5 (diff) | |
| download | external_llvm-f1935d55dc80d3e8b98e7cf56f81f607e817be82.zip external_llvm-f1935d55dc80d3e8b98e7cf56f81f607e817be82.tar.gz external_llvm-f1935d55dc80d3e8b98e7cf56f81f607e817be82.tar.bz2 | |
llc: Clarify -mc-relax-all description.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110477 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | tools/llc/llc.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index d4416e6..9227e1c 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -77,7 +77,9 @@ MAttrs("mattr", cl::value_desc("a1,+a2,-a3,...")); static cl::opt<bool> -RelaxAll("mc-relax-all", cl::desc("Relax all fixups")); +RelaxAll("mc-relax-all", + cl::desc("When used with filetype=obj, " + "relax all fixups in the emited object file")); cl::opt<TargetMachine::CodeGenFileType> FileType("filetype", cl::init(TargetMachine::CGFT_AssemblyFile), |
