aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2009-10-17 06:29:47 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2009-10-17 06:29:47 +0000
commit15f01e4ad6100fad0a4ecd8ee920840edc4459d3 (patch)
tree0c11f1b502603b9e18308d889adcd29c6605e9bd /gcc
parentda1e15032764791617e73850e9732d18222cd47c (diff)
downloadgcc-15f01e4ad6100fad0a4ecd8ee920840edc4459d3.zip
gcc-15f01e4ad6100fad0a4ecd8ee920840edc4459d3.tar.gz
gcc-15f01e4ad6100fad0a4ecd8ee920840edc4459d3.tar.bz2
* rtl.h (RTL_LOCATION): Fix typo.
From-SVN: r152929
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/rtl.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 156030e..80667d3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
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
and asm_input.
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 68cd466..2ed6a52 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 ()))