Commit 15f01e4a by Alexandre Oliva Committed by Alexandre Oliva

* rtl.h (RTL_LOCATION): Fix typo.

From-SVN: r152929
parent da1e1503
2009-10-17 Alexandre Oliva <aoliva@redhat.com> 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 * print-rtl.c (print_rtx): Print locators in asm_operands
and asm_input. and asm_input.
...@@ -762,7 +762,7 @@ extern void rtl_check_failed_flag (const char *, const_rtx, const char *, ...@@ -762,7 +762,7 @@ extern void rtl_check_failed_flag (const char *, const_rtx, const char *,
#define INSN_LOCATOR(INSN) XINT (INSN, 4) #define INSN_LOCATOR(INSN) XINT (INSN, 4)
/* LOCATION of an RTX if relevant. */ /* LOCATION of an RTX if relevant. */
#define RTL_LOCATION(X) (INSN_P (X) ? \ #define RTL_LOCATION(X) (INSN_P (X) ? \
locator_location (INSN_LOCATOR (x)) \ locator_location (INSN_LOCATOR (X)) \
: UNKNOWN_LOCATION) : UNKNOWN_LOCATION)
/* LOCATION of current INSN. */ /* LOCATION of current INSN. */
#define CURR_INSN_LOCATION (locator_location (curr_insn_locator ())) #define CURR_INSN_LOCATION (locator_location (curr_insn_locator ()))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment