summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCSubtargetInfo.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-09-18 05:33:15 +0000
committerAndrew Trick <atrick@apple.com>2012-09-18 05:33:15 +0000
commit34aadd63346b5f9b98749a306b71fcb00ee6996f (patch)
tree00e7327144ad5270502b6a54bc9eefd10085c227 /include/llvm/MC/MCSubtargetInfo.h
parent88b5a2bf343120b1cc01685dda4815d2c17c7cd1 (diff)
downloadllvm-34aadd63346b5f9b98749a306b71fcb00ee6996f.tar.gz
llvm-34aadd63346b5f9b98749a306b71fcb00ee6996f.tar.bz2
llvm-34aadd63346b5f9b98749a306b71fcb00ee6996f.tar.xz
Replaced ReInitMCSubtargetInfo with InitMCProcessor.
Now where we used to call ReInitMCSubtargetInfo, we actually recompute the same information as InitMCSubtargetInfo instead of only setting the feature bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCSubtargetInfo.h')
-rw-r--r--include/llvm/MC/MCSubtargetInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/MC/MCSubtargetInfo.h b/include/llvm/MC/MCSubtargetInfo.h
index d5e15d4842..451f435fe3 100644
--- a/include/llvm/MC/MCSubtargetInfo.h
+++ b/include/llvm/MC/MCSubtargetInfo.h
@@ -68,9 +68,9 @@ public:
return FeatureBits;
}
- /// ReInitMCSubtargetInfo - Change CPU (and optionally supplemented with
- /// feature string), recompute and return feature bits.
- uint64_t ReInitMCSubtargetInfo(StringRef CPU, StringRef FS);
+ /// InitMCProcessorInfo - Set or change the CPU (optionally supplemented with
+ /// feature string). Recompute feature bits and scheduling model.
+ void InitMCProcessorInfo(StringRef CPU, StringRef FS);
/// ToggleFeature - Toggle a feature and returns the re-computed feature
/// bits. This version does not change the implied bits.