diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:48:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:48:53 +0000 |
commit | 7b26fce23e5f733d1a614beae71d0499e78aeab1 (patch) | |
tree | c952f7380295ff3ba73e21eff6c90dafd9cfdf85 /llvm/lib/CodeGen/MachO.h | |
parent | 259717287abf3ec138f6c149cbe7703315848d43 (diff) | |
download | bcm5719-llvm-7b26fce23e5f733d1a614beae71d0499e78aeab1.tar.gz bcm5719-llvm-7b26fce23e5f733d1a614beae71d0499e78aeab1.zip |
Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.
llvm-svn: 79763
Diffstat (limited to 'llvm/lib/CodeGen/MachO.h')
-rw-r--r-- | llvm/lib/CodeGen/MachO.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachO.h b/llvm/lib/CodeGen/MachO.h index 247b4a6c0c4..cf8bbbf8fa6 100644 --- a/llvm/lib/CodeGen/MachO.h +++ b/llvm/lib/CodeGen/MachO.h @@ -21,7 +21,7 @@ namespace llvm { class GlobalValue; -class TargetAsmInfo; +class MCAsmInfo; /// MachOSym - This struct contains information about each symbol that is /// added to logical symbol table for the module. This is eventually @@ -68,7 +68,7 @@ struct MachOSym { }; MachOSym(const GlobalValue *gv, std::string name, uint8_t sect, - const TargetAsmInfo *TAI); + const MCAsmInfo *TAI); struct SymCmp { // FIXME: this does not appear to be sorting 'f' after 'F' |