From 15f01e4ad6100fad0a4ecd8ee920840edc4459d3 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Sat, 17 Oct 2009 06:29:47 +0000 Subject: [PATCH] * rtl.h (RTL_LOCATION): Fix typo. From-SVN: r152929 --- gcc/ChangeLog | 4 ++++ gcc/rtl.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 156030e720e..80667d3ef7f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-10-17 Alexandre Oliva + + * rtl.h (RTL_LOCATION): Fix typo. + 2009-10-17 Alexandre Oliva * print-rtl.c (print_rtx): Print locators in asm_operands diff --git a/gcc/rtl.h b/gcc/rtl.h index 68cd4665c5f..2ed6a522b0d 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -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 ()))