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/ARM/ARMSubtarget.h | |
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/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index fbe83227315..b73bbba9077 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -7,14 +7,14 @@ // //===----------------------------------------------------------------------===// // -// This file declares the ARM specific subclass of TargetSubtarget. +// This file declares the ARM specific subclass of TargetSubtargetInfo. // //===----------------------------------------------------------------------===// #ifndef ARMSUBTARGET_H #define ARMSUBTARGET_H -#include "llvm/Target/TargetSubtarget.h" +#include "llvm/Target/TargetSubtargetInfo.h" #include "llvm/MC/MCInstrItineraries.h" #include "llvm/ADT/Triple.h" #include <string> @@ -228,7 +228,7 @@ protected: /// enablePostRAScheduler - True at 'More' optimization. bool enablePostRAScheduler(CodeGenOpt::Level OptLevel, - TargetSubtarget::AntiDepBreakMode& Mode, + TargetSubtargetInfo::AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const; /// getInstrItins - Return the instruction itineraies based on subtarget |