|
@@ -242,18 +242,19 @@ tree. The standard header looks like this:
|
|
.. code-block:: c++
|
|
.. code-block:: c++
|
|
|
|
|
|
//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
|
|
//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
|
|
- ///////////////////////////////////////////////////////////////////////////////
|
|
|
|
- // //
|
|
|
|
- // Instruction.h //
|
|
|
|
- // Copyright (C) Microsoft Corporation. All rights reserved. //
|
|
|
|
- // Licensed under the MIT license. See COPYRIGHT in the project root for //
|
|
|
|
- // full license information. //
|
|
|
|
- // //
|
|
|
|
- // \file //
|
|
|
|
- // This file contains the declaration of the Instruction class, which is the //
|
|
|
|
- // base class for all of the VM instructions. //
|
|
|
|
- // //
|
|
|
|
- ///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
+ //
|
|
|
|
+ // The LLVM Compiler Infrastructure
|
|
|
|
+ //
|
|
|
|
+ // This file is distributed under the University of Illinois Open Source
|
|
|
|
+ // License. See LICENSE.TXT for details.
|
|
|
|
+ //
|
|
|
|
+ //===----------------------------------------------------------------------===//
|
|
|
|
+ ///
|
|
|
|
+ /// \file
|
|
|
|
+ /// This file contains the declaration of the Instruction class, which is the
|
|
|
|
+ /// base class for all of the VM instructions.
|
|
|
|
+ ///
|
|
|
|
+ //===----------------------------------------------------------------------===//
|
|
|
|
|
|
A few things to note about this particular format: The "``-*- C++ -*-``" string
|
|
A few things to note about this particular format: The "``-*- C++ -*-``" string
|
|
on the first line is there to tell Emacs that the source file is a C++ file, not
|
|
on the first line is there to tell Emacs that the source file is a C++ file, not
|