diff options
author | Roland McGrath <mcgrathr@google.com> | 2014-02-14 17:37:23 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 2014-02-14 17:37:23 +0000 |
commit | 88f7c49a8bfe6c9e7ac04da2ef3ba8281d3dba06 (patch) | |
tree | 7422872cc11ad04279001f8b6bb4165435fcddfd /gcc/config.in | |
parent | f8cdff388dbc035fd20d01bff7224c998c3aee17 (diff) | |
download | gcc-88f7c49a8bfe6c9e7ac04da2ef3ba8281d3dba06.zip gcc-88f7c49a8bfe6c9e7ac04da2ef3ba8281d3dba06.tar.gz gcc-88f7c49a8bfe6c9e7ac04da2ef3ba8281d3dba06.tar.bz2 |
Use ud2 assembly mnemonic when available.
gcc/
* configure.ac (HAVE_AS_IX86_UD2): New test for 'ud2' mnemonic.
* configure: Regenerated.
* config.in: Regenerated.
* config/i386/i386.md (trap) [HAVE_AS_IX86_UD2]: Use the mnemonic
instead of ASM_SHORT.
From-SVN: r207789
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 3aefa06..5aa3221 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -375,6 +375,12 @@ #endif +/* Define if your assembler supports the 'ud2' mnemonic. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_IX86_UD2 +#endif + + /* Define if your assembler supports the lituse_jsrdirect relocation. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_JSRDIRECT_RELOCS |