diff options
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index e1e102fc230..795b127e31c 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -383,7 +383,7 @@ BackendConsumer::StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D) { void BackendConsumer::OptimizationRemarkHandler( const llvm::DiagnosticInfoOptimizationRemark &D) { // We only support remarks. - assert (D.getSeverity() == llvm::DS_Remark); + assert(D.getSeverity() == llvm::DS_Remark); // Optimization remarks are active only if -Rpass=regexp is given and the // regular expression pattern in 'regexp' matches the name of the pass |