diff options
author | Eric Christopher <echristo@apple.com> | 2009-12-18 02:12:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2009-12-18 02:12:53 +0000 |
commit | 4c155350f1acdca05f54396665d91bdaa582d360 (patch) | |
tree | 189f26becaa10052b2865123360b37780b9102f6 | |
parent | b256ccfbe5f557ecfd6447c9dbf31025bf6f5e8f (diff) | |
download | bcm5719-llvm-4c155350f1acdca05f54396665d91bdaa582d360.tar.gz bcm5719-llvm-4c155350f1acdca05f54396665d91bdaa582d360.zip |
Fix typo.
llvm-svn: 91657
-rw-r--r-- | llvm/lib/Target/MSIL/MSILWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSIL/MSILWriter.cpp b/llvm/lib/Target/MSIL/MSILWriter.cpp index 949b91020fd..b1661fee5ab 100644 --- a/llvm/lib/Target/MSIL/MSILWriter.cpp +++ b/llvm/lib/Target/MSIL/MSILWriter.cpp @@ -1696,7 +1696,7 @@ bool MSILTarget::addPassesToEmitWholeFile(PassManager &PM, if (FileType != TargetMachine::AssemblyFile) return true; MSILWriter* Writer = new MSILWriter(o); PM.add(createGCLoweringPass()); - // FIXME: Handle switch trougth native IL instruction "switch" + // FIXME: Handle switch through native IL instruction "switch" PM.add(createLowerSwitchPass()); PM.add(createCFGSimplificationPass()); PM.add(new MSILModule(Writer->UsedTypes,Writer->TD)); |