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 | ba56b5dc35b45bdf511bca3b0d379d884f3c97a0 (patch) | |
| tree | 6a7d6fc514c89a52ec1e995fd27ecccc1c21c679 | |
| parent | a983beab37dae30cece4c7a581536ca4eda1d47c (diff) | |
| download | bcm5719-llvm-ba56b5dc35b45bdf511bca3b0d379d884f3c97a0.tar.gz bcm5719-llvm-ba56b5dc35b45bdf511bca3b0d379d884f3c97a0.zip | |
Finegrainify namespacification
llvm-svn: 25877
| -rw-r--r-- | llvm/lib/Target/MRegisterInfo.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/llvm/lib/Target/MRegisterInfo.cpp b/llvm/lib/Target/MRegisterInfo.cpp index c8eba554dbc..790f95f081b 100644 --- a/llvm/lib/Target/MRegisterInfo.cpp +++ b/llvm/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 | 

