mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-23 19:59:48 +00:00
Fix gcc's -Wunused-but-set-variable warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168576 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
48bb786b13
commit
250ab62a62
@ -667,8 +667,6 @@ static _Unwind_Reason_Code handleLsda(int version,
|
||||
const uint8_t *actionTableStart = callSiteTableEnd;
|
||||
const uint8_t *callSitePtr = callSiteTableStart;
|
||||
|
||||
bool foreignException = false;
|
||||
|
||||
while (callSitePtr < callSiteTableEnd) {
|
||||
uintptr_t start = readEncodedPointer(&callSitePtr,
|
||||
callSiteEncoding);
|
||||
@ -684,7 +682,6 @@ static _Unwind_Reason_Code handleLsda(int version,
|
||||
// We have been notified of a foreign exception being thrown,
|
||||
// and we therefore need to execute cleanup landing pads
|
||||
actionEntry = 0;
|
||||
foreignException = true;
|
||||
}
|
||||
|
||||
if (landingPad == 0) {
|
||||
@ -1687,7 +1684,6 @@ static void createStandardUtilityFunctions(unsigned numTypeInfos,
|
||||
std::vector<llvm::Constant*> structVals;
|
||||
|
||||
llvm::Constant *nextStruct;
|
||||
llvm::GlobalVariable *nextGlobal = NULL;
|
||||
|
||||
// Generate each type info
|
||||
//
|
||||
@ -1702,7 +1698,6 @@ static void createStandardUtilityFunctions(unsigned numTypeInfos,
|
||||
typeInfoName = typeInfoNameBuilder.str();
|
||||
|
||||
// Note: Does not seem to work without allocation
|
||||
nextGlobal =
|
||||
new llvm::GlobalVariable(module,
|
||||
ourTypeInfoType,
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user