diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-02-04 00:47:38 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-02-04 00:47:38 +0000 |
commit | 80159432de392d99deae21503cebc8db7ac40807 (patch) | |
tree | 8cdea5ac80c354ceb70185f652ec0eeef67dbe47 /llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | |
parent | 3d591ae0b9f5e4f0ad50aac79f3538c1a13abe2d (diff) | |
download | bcm5719-llvm-80159432de392d99deae21503cebc8db7ac40807.tar.gz bcm5719-llvm-80159432de392d99deae21503cebc8db7ac40807.zip |
PPCDarwinAsmPrinter::EmitStartOfAsmFile(): Add checking range in CPUDirectives[].
llvm-svn: 174298
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index b2d9ab250d5..a440667e00f 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -841,8 +841,11 @@ void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) { assert(Directive <= PPC::DIR_64 && "Directive out of range."); // FIXME: This is a total hack, finish mc'izing the PPC backend. - if (OutStreamer.hasRawTextSupport()) + if (OutStreamer.hasRawTextSupport()) { + assert(Directive < sizeof(CPUDirectives) / sizeof(*CPUDirectives) && + "CPUDirectives[] might not be up-to-date!"); OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive])); + } // Prime text sections so they are adjacent. This reduces the likelihood a // large data or debug section causes a branch to exceed 16M limit. |