| Index: src/IceInstX8632.h
|
| diff --git a/src/IceInstX8632.h b/src/IceInstX8632.h
|
| index 44939ddba21d84355631ac5d65aa5732f97f0493..75e371965cd3489c854a562af57b08157fe85fdf 100644
|
| --- a/src/IceInstX8632.h
|
| +++ b/src/IceInstX8632.h
|
| @@ -1,4 +1,4 @@
|
| -//===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===//
|
| +//===- subzero/src/IceInstX8664.h - x86-64 machine instructions -*- C++ -*-===//
|
| //
|
| // The Subzero Code Generator
|
| //
|
| @@ -8,30 +8,27 @@
|
| //===----------------------------------------------------------------------===//
|
| ///
|
| /// \file
|
| -/// This file used to house all the X8632 instructions. Subzero has been
|
| +/// This file used to house all the X8664 instructions. Subzero has been
|
| /// modified to use templates for X86 instructions, so all those definitions are
|
| /// are in IceInstX86Base.h
|
| ///
|
| -/// When interacting with the X8632 target (which should only happen in the
|
| -/// X8632 TargetLowering) clients have should use the Ice::X8632::Traits::Insts
|
| +/// When interacting with the X8664 target (which should only happen in the
|
| +/// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts
|
| /// traits, which hides all the template verboseness behind a type alias.
|
| ///
|
| -/// For example, to create an X8632 MOV Instruction, clients should do
|
| +/// For example, to create an X8664 MOV Instruction, clients should do
|
| ///
|
| -/// ::Ice::X8632::Traits::Insts::Mov::create
|
| -///
|
| -/// In the future, this file might be used to declare X8632 specific
|
| -/// instructions (e.g., FLD, and FSTP.)
|
| +/// ::Ice::X8664::Traits::Insts::Mov::create
|
| ///
|
| //===----------------------------------------------------------------------===//
|
|
|
| -#ifndef SUBZERO_SRC_ICEINSTX8632_H
|
| -#define SUBZERO_SRC_ICEINSTX8632_H
|
| +#ifndef SUBZERO_SRC_ICEINSTX8664_H
|
| +#define SUBZERO_SRC_ICEINSTX8664_H
|
|
|
| #include "IceDefs.h"
|
| #include "IceInst.h"
|
| #include "IceInstX86Base.h"
|
| #include "IceOperand.h"
|
| -#include "IceTargetLoweringX8632Traits.h"
|
| +#include "IceTargetLoweringX8664Traits.h"
|
|
|
| -#endif // SUBZERO_SRC_ICEINSTX8632_H
|
| +#endif // SUBZERO_SRC_ICEINSTX8664_H
|
|
|