diff options
author | Jim Grosbach <grosbach@apple.com> | 2013-01-07 21:12:13 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2013-01-07 21:12:13 +0000 |
commit | 553eb75663b38b637c11058e39554eab7d9236a8 (patch) | |
tree | e6acef5791fe5a5f158e58747397567980327a18 /llvm/lib/Target/ARM/ARMTargetMachine.cpp | |
parent | 5cfa4aeee59ac9cdf5d4a2c5bee8f09ffc917d1f (diff) | |
download | bcm5719-llvm-553eb75663b38b637c11058e39554eab7d9236a8.tar.gz bcm5719-llvm-553eb75663b38b637c11058e39554eab7d9236a8.zip |
ARM: Fix a few copy-paste errors.
s/X86/ARM/
llvm-svn: 171789
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp index dab7f178cd0..774521852a1 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp +++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp @@ -52,8 +52,8 @@ ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT, } void ARMBaseTargetMachine::addAnalysisPasses(PassManagerBase &PM) { - // Add first the target-independent BasicTTI pass, then our X86 pass. This - // allows the X86 pass to delegate to the target independent layer when + // Add first the target-independent BasicTTI pass, then our ARM pass. This + // allows the ARM pass to delegate to the target independent layer when // appropriate. PM.add(createBasicTargetTransformInfoPass(getTargetLowering())); PM.add(createARMTargetTransformInfoPass(this)); |