From d1f003c610e39314803fa3fd4f311230729d3616 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sun, 16 Mar 2008 23:51:19 +0000 Subject: Fix handling of RELA relative relocs against local symbols in merge sections. --- gold/testsuite/two_file_test_1.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'gold/testsuite/two_file_test_1.cc') diff --git a/gold/testsuite/two_file_test_1.cc b/gold/testsuite/two_file_test_1.cc index 2c3b9c9..7646838 100644 --- a/gold/testsuite/two_file_test_1.cc +++ b/gold/testsuite/two_file_test_1.cc @@ -47,6 +47,7 @@ // 14 Compare string constants in file 1 and file 2. // 15 Compare wide string constants in file 1 and file 2. // 16 Call a function directly after its address has been taken. +// 17 File 1 checks array of string constants defined in file 2. #include "two_file_test.h" @@ -203,3 +204,18 @@ t16() { return f10() == 135; } + +// 17 File 1 checks array of string constants defined in file 2. + +bool +t17() +{ + char c = 'a'; + for (int i = 0; i < T17_COUNT; ++i) + { + if (t17data[i][0] != c || t17data[i][1] != '\0') + return false; + ++c; + } + return true; +} -- cgit v1.1