diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-01 04:04:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-01 04:04:35 +0000 |
commit | 803a5f6ecb1823280f80e3c4459aa58627d0484c (patch) | |
tree | 54bc6bcb65b69b76177ac145967ba91bbbbf8381 /utils/TableGen/CodeGenTarget.cpp | |
parent | 2082ebe8b3a5db302748828ab4f79a36d239c1d9 (diff) |
Rename CodeGenWrappers.(cpp|h) -> CodeGenTarget.(cpp|h)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | utils/TableGen/CodeGenTarget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp index fe4ad2634d..eef94db0b9 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -1,4 +1,4 @@ -//===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===// +//===- CodeGenTarget.cpp - CodeGen Target Class Wrapper ---------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,14 +7,14 @@ // //===----------------------------------------------------------------------===// // -// These classes wrap target description classes used by the various code +// This class wrap target description classes used by the various code // generation TableGen backends. This makes it easier to access the data and // provides a single place that needs to check it for validity. All of these // classes throw exceptions on error conditions. // //===----------------------------------------------------------------------===// -#include "CodeGenWrappers.h" +#include "CodeGenTarget.h" #include "Record.h" using namespace llvm; |