diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-05-15 09:31:32 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-05-15 09:31:32 +0000 |
commit | e2492c860a3ffba8660caba58f9462f2cd3c73f1 (patch) | |
tree | df78cc3b1b31eff48d3fd766c1b8b3961db4ac0b /llvm/tools/llvm-mca/RetireControlUnit.cpp | |
parent | dbef8cc67c9918334c22f03e23e2dfa84ade464b (diff) | |
download | bcm5719-llvm-e2492c860a3ffba8660caba58f9462f2cd3c73f1.tar.gz bcm5719-llvm-e2492c860a3ffba8660caba58f9462f2cd3c73f1.zip |
[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.
llvm-svn: 332334
Diffstat (limited to 'llvm/tools/llvm-mca/RetireControlUnit.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/RetireControlUnit.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mca/RetireControlUnit.cpp b/llvm/tools/llvm-mca/RetireControlUnit.cpp index b7590669f71..4469da3d603 100644 --- a/llvm/tools/llvm-mca/RetireControlUnit.cpp +++ b/llvm/tools/llvm-mca/RetireControlUnit.cpp @@ -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" |