aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-05-30 22:47:19 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-05-30 22:47:19 +0000
commit0001dc290b29c489709e53e8800ad79701f31b0f (patch)
tree0767e9795827970bb39980558044dfd47703795c /include/llvm/Target
parentbc9a81d4c4e79426ee5649ad9fbddd98ca245bd5 (diff)
downloadexternal_llvm-0001dc290b29c489709e53e8800ad79701f31b0f.zip
external_llvm-0001dc290b29c489709e53e8800ad79701f31b0f.tar.gz
external_llvm-0001dc290b29c489709e53e8800ad79701f31b0f.tar.bz2
Revert 51775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetMachineRegistry.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetMachineRegistry.h b/include/llvm/Target/TargetMachineRegistry.h
index 280db90..2607ad5 100644
--- a/include/llvm/Target/TargetMachineRegistry.h
+++ b/include/llvm/Target/TargetMachineRegistry.h
@@ -70,7 +70,7 @@ namespace llvm {
/// The type 'TargetMachineImpl' should provide a constructor with two
/// parameters:
/// - const Module& M: the module that is being compiled:
- /// - const std::string& fs: target-specific string describing target
+ /// - const std::string& FS: target-specific string describing target
/// flavour.
template<class TargetMachineImpl>
@@ -86,8 +86,8 @@ namespace llvm {
TargetMachineRegistry::entry Entry;
TargetMachineRegistry::node Node;
- static TargetMachine *Allocator(const Module &M, const std::string &fs) {
- return new TargetMachineImpl(M, fs);
+ static TargetMachine *Allocator(const Module &M, const std::string &FS) {
+ return new TargetMachineImpl(M, FS);
}
};