diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-01 18:10:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-01 18:10:56 +0000 |
commit | 20ea062192778c5cc1d05f771fbc58a6e99d753c (patch) | |
tree | be1572530734cf56704aa41d2e153d74e8bf3e84 /lib/Target/MRegisterInfo.cpp | |
parent | 5a7efc9d4f3b1fd09873a7377bcca7f513d2ad80 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MRegisterInfo.cpp')
-rw-r--r-- | lib/Target/MRegisterInfo.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Target/MRegisterInfo.cpp b/lib/Target/MRegisterInfo.cpp index c8eba554db..790f95f081 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<bool> MRegisterInfo::getAllocatableSet(MachineFunction &MF) const { } return Allocatable; } - -} // End llvm namespace |