]> granicus.if.org Git - clang/commitdiff
clang-format this if.
authorRafael Espindola <rafael.espindola@gmail.com>
Mon, 4 Nov 2013 17:13:51 +0000 (17:13 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Mon, 4 Nov 2013 17:13:51 +0000 (17:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193997 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Tools.cpp

index 3c821b63ab0134a850198b9a50e1d128d9d2abca..0aac191bac0f0176bb7186049ee2228b23b0df61 100644 (file)
@@ -3214,11 +3214,11 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
     CmdArgs.push_back("-fno-threadsafe-statics");
 
   // -fuse-cxa-atexit is default.
-  if (!Args.hasFlag(options::OPT_fuse_cxa_atexit,
-                    options::OPT_fno_use_cxa_atexit,
-                   getToolChain().getTriple().getOS() != llvm::Triple::Cygwin &&
-                  getToolChain().getTriple().getOS() != llvm::Triple::MinGW32 &&
-              getToolChain().getArch() != llvm::Triple::hexagon) ||
+  if (!Args.hasFlag(
+           options::OPT_fuse_cxa_atexit, options::OPT_fno_use_cxa_atexit,
+           getToolChain().getTriple().getOS() != llvm::Triple::Cygwin &&
+               getToolChain().getTriple().getOS() != llvm::Triple::MinGW32 &&
+               getToolChain().getArch() != llvm::Triple::hexagon) ||
       KernelOrKext)
     CmdArgs.push_back("-fno-use-cxa-atexit");