diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-27 09:02:49 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-27 09:02:49 +0000 |
commit | d5a72d9642e0d532404bc97f705d0b9c565aafcd (patch) | |
tree | 3e0b789c428b7ebd4fcc07be20afc646144c48e2 | |
parent | 37986053b45ee2a4e74fefdee30a869a5a3e8550 (diff) |
80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85215 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/LLVMCConfigurationEmitter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp index f5d1139bb6..7ec3891444 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -1901,7 +1901,8 @@ void EmitGenerateActionMethod (const ToolDescription& D, // For every understood option, emit handling code. if (D.Actions) - EmitCaseConstructHandler(D.Actions, Indent2, EmitActionHandlersCallback(OptDescs), + EmitCaseConstructHandler(D.Actions, Indent2, + EmitActionHandlersCallback(OptDescs), false, OptDescs, O); O << '\n'; |