From: Chris Lattner Date: Wed, 1 Feb 2006 18:10:56 +0000 (+0000) Subject: Finegrainify namespacification X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=20ea062192778c5cc1d05f771fbc58a6e99d753c;p=oota-llvm.git Finegrainify namespacification git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25877 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/MRegisterInfo.cpp b/lib/Target/MRegisterInfo.cpp index c8eba554dbc..790f95f081b 100644 --- a/lib/Target/MRegisterInfo.cpp +++ b/lib/Target/MRegisterInfo.cpp @@ -12,8 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Target/MRegisterInfo.h" - -namespace llvm { +using namespace llvm; MRegisterInfo::MRegisterInfo(const TargetRegisterDesc *D, unsigned NR, regclass_iterator RCB, regclass_iterator RCE, @@ -39,5 +38,3 @@ std::vector MRegisterInfo::getAllocatableSet(MachineFunction &MF) const { } return Allocatable; } - -} // End llvm namespace