<div>The attached patch fixes these two warnings from clang:</div><div><br></div><div>/home/sean/pg/others/llvm/source/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:4506:21: warning: adding 'bool' to a string does not append to the string [-Wstring-plus-int]</div>
<div>    return "_setjmp"+!TLI.usesUnderscoreSetJmp();</div><div>           ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~</div><div>/home/sean/pg/others/llvm/source/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:4506:21: note: use array indexing to silence this warning</div>
<div>    return "_setjmp"+!TLI.usesUnderscoreSetJmp();</div><div>                    ^</div><div>           &        [                           ]</div><div>/home/sean/pg/others/llvm/source/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:4508:22: warning: adding 'bool' to a string does not append to the string [-Wstring-plus-int]</div>
<div>    return "_longjmp"+!TLI.usesUnderscoreLongJmp();</div><div>           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~</div><div>/home/sean/pg/others/llvm/source/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:4508:22: note: use array indexing to silence this warning</div>
<div>    return "_longjmp"+!TLI.usesUnderscoreLongJmp();</div><div>                     ^</div><div>           &         [                            ]</div><div>2 warnings generated.</div><div><br></div><div>
<br></div><div>--Sean Silva</div>