Skip to content

Commit

Permalink
tcg/s390: Fix merge error with facilities
Browse files Browse the repository at this point in the history
The variable was renamed s390_facilities.

Signed-off-by: Richard Henderson <[email protected]>
  • Loading branch information
rth7680 committed Jan 13, 2017
1 parent b6af8ea commit a32b6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcg/s390/tcg-target.inc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ static int tgen_cmp(TCGContext *s, TCGType type, TCGCond c, TCGReg r1,
/* If we only got here because of load-and-test,
and we couldn't use that, then we need to load
the constant into a register. */
if (!(facilities & FACILITY_EXT_IMM)) {
if (!(s390_facilities & FACILITY_EXT_IMM)) {
c2 = TCG_TMP0;
tcg_out_movi(s, type, c2, 0);
goto do_reg;
Expand Down

0 comments on commit a32b6ae

Please sign in to comment.