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

Simplify a bit.

llvm-svn: 120980
This commit is contained in:
Rafael Espindola 2010-12-06 03:36:43 +00:00
parent d361a448af
commit bf001eed4c

View File

@ -313,7 +313,7 @@ static bool EvaluateSymbolicAdd(const MCAsmLayout *Layout,
assert(!(Layout && !Asm));
if ((Layout || Asm) && A && B) {
if (Asm && A && B) {
const MCSymbol &SA = A->getSymbol();
const MCSymbol &SB = B->getSymbol();
const MCObjectFormat &F = Asm->getBackend().getObjectFormat();