[llvm] r332334 - [llvm-mca] Add file header to RetireControlUnit.cpp.

Andrea Di Biagio via llvm-commits llvm-commits at lists.llvm.org
Tue May 15 02:31:33 PDT 2018


Author: adibiagio
Date: Tue May 15 02:31:32 2018
New Revision: 332334

URL: http://llvm.org/viewvc/llvm-project?rev=332334&view=rev
Log:
[llvm-mca] Add file header to RetireControlUnit.cpp.

Strictly speaking, this is not necessary for .cpp files. However, other .cpp
files from this same tool have it. This also matches what we do in other tools.

Modified:
    llvm/trunk/tools/llvm-mca/RetireControlUnit.cpp

Modified: llvm/trunk/tools/llvm-mca/RetireControlUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-mca/RetireControlUnit.cpp?rev=332334&r1=332333&r2=332334&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-mca/RetireControlUnit.cpp (original)
+++ llvm/trunk/tools/llvm-mca/RetireControlUnit.cpp Tue May 15 02:31:32 2018
@@ -1,3 +1,18 @@
+//===---------------------- RetireControlUnit.cpp ---------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+/// \file
+///
+/// This file implements methods declared by the RetireControlUnit interface.
+///
+//===----------------------------------------------------------------------===//
+
+
 #include "RetireControlUnit.h"
 #include "Dispatch.h"
 #include "llvm/MC/MCSchedule.h"




More information about the llvm-commits mailing list