[llvm] 62c41cf - Add a missing file header comment, NFC.

Chris Lattner via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 26 15:34:22 PDT 2021


Author: Chris Lattner
Date: 2021-03-26T15:34:04-07:00
New Revision: 62c41cfba15e5e4f4ba667877f9718cddc7894e3

URL: https://github.com/llvm/llvm-project/commit/62c41cfba15e5e4f4ba667877f9718cddc7894e3
DIFF: https://github.com/llvm/llvm-project/commit/62c41cfba15e5e4f4ba667877f9718cddc7894e3.diff

LOG: Add a missing file header comment, NFC.

Added: 
    

Modified: 
    llvm/lib/Transforms/IPO/SCCP.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/IPO/SCCP.cpp b/llvm/lib/Transforms/IPO/SCCP.cpp
index fdffffba0c2d..6cf1d307921d 100644
--- a/llvm/lib/Transforms/IPO/SCCP.cpp
+++ b/llvm/lib/Transforms/IPO/SCCP.cpp
@@ -1,3 +1,15 @@
+//===-- SCCP.cpp ----------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This file implements Interprocedural Sparse Conditional Constant Propagation.
+//
+//===----------------------------------------------------------------------===//
+
 #include "llvm/Transforms/IPO/SCCP.h"
 #include "llvm/Analysis/AssumptionCache.h"
 #include "llvm/Analysis/PostDominators.h"


        


More information about the llvm-commits mailing list