* rtl.h (RTL_LOCATION): Fix typo.

From-SVN: r152929
This commit is contained in:
Alexandre Oliva 2009-10-17 06:29:47 +00:00 committed by Alexandre Oliva
parent da1e150327
commit 15f01e4ad6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-10-17 Alexandre Oliva <aoliva@redhat.com>
* rtl.h (RTL_LOCATION): Fix typo.
2009-10-17 Alexandre Oliva <aoliva@redhat.com>
* print-rtl.c (print_rtx): Print locators in asm_operands

View File

@ -762,7 +762,7 @@ extern void rtl_check_failed_flag (const char *, const_rtx, const char *,
#define INSN_LOCATOR(INSN) XINT (INSN, 4)
/* LOCATION of an RTX if relevant. */
#define RTL_LOCATION(X) (INSN_P (X) ? \
locator_location (INSN_LOCATOR (x)) \
locator_location (INSN_LOCATOR (X)) \
: UNKNOWN_LOCATION)
/* LOCATION of current INSN. */
#define CURR_INSN_LOCATION (locator_location (curr_insn_locator ()))