diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-20 07:47:48 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-20 07:47:48 +0000 |
commit | 3198be8ab531c5bcbbe48feedcb7280826d6c283 (patch) | |
tree | a52b6191ab766bc8208ff02310e2093a9198a4b6 | |
parent | 4311e4507a00d3c6d62561b1d1cde7c8fd2fdeca (diff) |
ccc: Spell mattr correctly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65119 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/ccc/ccclib/Tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py index 040cfac851..a9db01ac12 100644 --- a/tools/ccc/ccclib/Tools.py +++ b/tools/ccc/ccclib/Tools.py @@ -332,7 +332,7 @@ class Clang_CompileTool(Tool): elif arglist.getLastArg(neg): attrs.append('-' + flag) if attrs: - cmd_args.append('--mattrs=%s' % ','.join(attrs)) + cmd_args.append('--mattr=%s' % ','.join(attrs)) if arglist.hasFFlag(arglist.parser.f_mathErrnoOption, arglist.parser.f_noMathErrnoOption, |