Re: PATCH RFA: Call default_file_start from s390_asm_file_start

2016-08-23 Thread Ian Lance Taylor
On Tue, Aug 23, 2016 at 12:58 PM, Dominik Vogt wrote: > On Tue, Aug 23, 2016 at 11:57:01AM -0700, Ian Lance Taylor wrote: >> The root cause of https://golang.org/issue/16780 is that GCC on s390 >> GNU/Linux does not emit a .file directive. This is because the >> function s390_asm_file_start does

Re: PATCH RFA: Call default_file_start from s390_asm_file_start

2016-08-23 Thread Dominik Vogt
On Tue, Aug 23, 2016 at 11:57:01AM -0700, Ian Lance Taylor wrote: > The root cause of https://golang.org/issue/16780 is that GCC on s390 > GNU/Linux does not emit a .file directive. This is because the > function s390_asm_file_start does not call default_file_start, unlike > most other TARGET_ASM_

PATCH RFA: Call default_file_start from s390_asm_file_start

2016-08-23 Thread Ian Lance Taylor
The root cause of https://golang.org/issue/16780 is that GCC on s390 GNU/Linux does not emit a .file directive. This is because the function s390_asm_file_start does not call default_file_start, unlike most other TARGET_ASM_FILE_START hooks. This patch should fix the problem. Since I don't have