diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-01 21:01:15 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-01 21:01:15 +0000 |
commit | 0d639a28aa3f3404e66286f2f918e06b4249ecbb (patch) | |
tree | 099fd78dab45420aeb28403c82f7e0741a14ca9e /llvm/lib/Target/Mips | |
parent | 94942b32a36e2246e7bf4ce3122a3e41729bcdae (diff) | |
download | bcm5719-llvm-0d639a28aa3f3404e66286f2f918e06b4249ecbb.tar.gz bcm5719-llvm-0d639a28aa3f3404e66286f2f918e06b4249ecbb.zip |
Rename TargetSubtarget to TargetSubtargetInfo for consistency.
llvm-svn: 134259
Diffstat (limited to 'llvm/lib/Target/Mips')
-rw-r--r-- | llvm/lib/Target/Mips/MipsSubtarget.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Target/Mips/MipsSubtarget.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsSubtarget.cpp b/llvm/lib/Target/Mips/MipsSubtarget.cpp index 9c69e0459d3..437e7180305 100644 --- a/llvm/lib/Target/Mips/MipsSubtarget.cpp +++ b/llvm/lib/Target/Mips/MipsSubtarget.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file implements the Mips specific subclass of TargetSubtarget. +// This file implements the Mips specific subclass of TargetSubtargetInfo. // //===----------------------------------------------------------------------===// diff --git a/llvm/lib/Target/Mips/MipsSubtarget.h b/llvm/lib/Target/Mips/MipsSubtarget.h index 2b7d98f5c52..c090252e2e9 100644 --- a/llvm/lib/Target/Mips/MipsSubtarget.h +++ b/llvm/lib/Target/Mips/MipsSubtarget.h @@ -7,14 +7,14 @@ // //===----------------------------------------------------------------------===// // -// This file declares the Mips specific subclass of TargetSubtarget. +// This file declares the Mips specific subclass of TargetSubtargetInfo. // //===----------------------------------------------------------------------===// #ifndef MIPSSUBTARGET_H #define MIPSSUBTARGET_H -#include "llvm/Target/TargetSubtarget.h" +#include "llvm/Target/TargetSubtargetInfo.h" #include "llvm/MC/MCInstrItineraries.h" #include <string> |