explain the jump for llvm-db
[oota-llvm.git] / utils / TableGen / CodeGenTarget.cpp
index d1e0e87ab9ca1722301573b41fcd09249381b432..bf641fa27677efcb7610e5f7429a406aaa49c508 100644 (file)
@@ -1,4 +1,11 @@
 //===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // These classes wrap target description classes used by the various code
 // generation TableGen backends.  This makes it easier to access the data and
@@ -10,6 +17,8 @@
 #include "CodeGenWrappers.h"
 #include "Record.h"
 
+namespace llvm {
+
 /// getValueType - Return the MCV::ValueType that the specified TableGen record
 /// corresponds to.
 MVT::ValueType getValueType(Record *Rec) {
@@ -87,3 +96,5 @@ const std::string &CodeGenTarget::getName() const {
 Record *CodeGenTarget::getInstructionSet() const {
   return TargetRec->getValueAsDef("InstructionSet");
 }
+
+} // End llvm namespace