diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2018-12-28 14:40:27 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2018-12-28 06:40:27 -0800 |
commit | ba7b6836f550d5fdcba73a07c419565313923a1d (patch) | |
tree | fa72d0afd01653cf976ba025a2c2c6e3486b4eba /gcc | |
parent | 59d5960cdba3fb1bd8d9c234fc36fb634b3e9ab2 (diff) | |
download | gcc-ba7b6836f550d5fdcba73a07c419565313923a1d.zip gcc-ba7b6836f550d5fdcba73a07c419565313923a1d.tar.gz gcc-ba7b6836f550d5fdcba73a07c419565313923a1d.tar.bz2 |
x86-64: Remove .file directive from snapshot source
Since snapshot() is implemented in assembly code, .file directive should
be removed. Otherwise, debugger can't find the snapshot source.
* gcc.target/x86_64/abi/asm-support-darwin.s: Remove .file
directive.
* gcc.target/x86_64/abi/asm-support.S: Likewise.
From-SVN: r267450
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/x86_64/abi/asm-support.S | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4213903..7f9d1a5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2018-12-28 H.J. Lu <hongjiu.lu@intel.com> + + * gcc.target/x86_64/abi/asm-support-darwin.s: Remove .file + directive. + * gcc.target/x86_64/abi/asm-support.S: Likewise. + 2018-12-27 Jan Hubicka <hubicka@ucw.cz> * g++.dg/ipa/devirt-53.C: New testcase. diff --git a/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s b/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s index b3b8846..8fe5dab 100644 --- a/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s +++ b/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s @@ -1,4 +1,3 @@ - .file "snapshot.S" .text .p2align 4,,15 .globl _snapshot diff --git a/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S b/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S index 8e0bffe..7a8ed03 100644 --- a/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S +++ b/gcc/testsuite/gcc.target/x86_64/abi/asm-support.S @@ -1,4 +1,3 @@ - .file "snapshot.S" #ifdef __AVX__ .sse_check none #endif |