1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix unused variable warning

llvm-svn: 235155
This commit is contained in:
Reid Kleckner 2015-04-17 01:03:30 +00:00
parent 52ead7bcab
commit 105f3df302

View File

@ -239,11 +239,6 @@ void Win64Exception::emitCSpecificHandlerTable() {
End = createImageRel32(EHFuncEndSym);
}
// These aren't really type info globals, they are actually pointers to
// filter functions ordered by selector. The zero selector is used for
// cleanups, so slot zero corresponds to selector 1.
const std::vector<const GlobalValue *> &SelectorToFilter = MMI->getTypeInfos();
// Emit an entry for each action.
for (SEHHandler Handler : LPad->SEHHandlers) {
Asm->OutStreamer.EmitValue(Begin, 4);