aboutsummaryrefslogtreecommitdiff
path: root/gcc/selftest-logical-location.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/selftest-logical-location.cc')
-rw-r--r--gcc/selftest-logical-location.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/selftest-logical-location.cc b/gcc/selftest-logical-location.cc
index 5f33b48..63b9fb4 100644
--- a/gcc/selftest-logical-location.cc
+++ b/gcc/selftest-logical-location.cc
@@ -90,7 +90,7 @@ test_logical_location_manager::item_from_funcname (const char *funcname)
if (item **slot = m_name_to_item_map.get (funcname))
return *slot;
- item *i = new item (LOGICAL_LOCATION_KIND_FUNCTION, funcname);
+ item *i = new item (logical_location_kind::function, funcname);
m_name_to_item_map.put (funcname, i);
return i;
}