diff options
author | Cary Coutant <ccoutant@google.com> | 2009-04-17 23:58:12 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@gcc.gnu.org> | 2009-04-17 16:58:12 -0700 |
commit | 668fb0e80cdf99faac329d5f7702966bf4a65832 (patch) | |
tree | a4c3f5f19c2b95740a0ef2e6a3a1d2eba0c692f7 /gcc/tree-flow-inline.h | |
parent | 4d4014c1cd5c2336ff2d67130a88b408795720a9 (diff) | |
download | gcc-668fb0e80cdf99faac329d5f7702966bf4a65832.tar.gz |
* tree-flow-inline.h (get_lineno): Fix inverted test.
From-SVN: r146299
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 7de8db8d321..536a111bb44 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -234,7 +234,7 @@ get_lineno (const_gimple stmt) return -1; loc = gimple_location (stmt); - if (loc != UNKNOWN_LOCATION) + if (loc == UNKNOWN_LOCATION) return -1; return LOCATION_LINE (loc); |