summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-01 04:04:35 +0000
committerChris Lattner <sabre@nondot.org>2004-08-01 04:04:35 +0000
commit803a5f6ecb1823280f80e3c4459aa58627d0484c (patch)
tree54bc6bcb65b69b76177ac145967ba91bbbbf8381 /utils/TableGen/CodeGenTarget.h
parent2082ebe8b3a5db302748828ab4f79a36d239c1d9 (diff)
downloadllvm-803a5f6ecb1823280f80e3c4459aa58627d0484c.tar.gz
llvm-803a5f6ecb1823280f80e3c4459aa58627d0484c.tar.bz2
llvm-803a5f6ecb1823280f80e3c4459aa58627d0484c.tar.xz
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.h')
-rw-r--r--utils/TableGen/CodeGenTarget.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
index 948360e2b1..aad277c516 100644
--- a/utils/TableGen/CodeGenTarget.h
+++ b/utils/TableGen/CodeGenTarget.h
@@ -1,4 +1,4 @@
-//===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,15 +7,15 @@
//
//===----------------------------------------------------------------------===//
//
-// These classes 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.
+// This file defines wrappers for the Target class and related global
+// functionality. 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.
//
//===----------------------------------------------------------------------===//
-#ifndef CODEGENWRAPPERS_H
-#define CODEGENWRAPPERS_H
+#ifndef CODEGEN_TARGET_H
+#define CODEGEN_TARGET_H
#include "llvm/CodeGen/ValueTypes.h"
#include <iosfwd>