Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
ee7692d2
Commit
ee7692d2
authored
Nov 12, 2000
by
Marc Espie
Committed by
Marc Espie
Nov 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.in: Fix filds test.
* configure.in: Fix filds test. * configure: Regen. From-SVN: r37406
parent
f8c4f860
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/configure
+1
-1
gcc/configure.in
+1
-1
No files found.
gcc/ChangeLog
View file @
ee7692d2
2000-11-12 Marc Espie <espie@openbsd.org>
* configure.in: Fix filds test.
* configure: Regen.
2000-11-12 Mark Mitchell <mark@codesourcery.com>
* jump.c (delete_computation): Don't assume that just becuase an
...
...
gcc/configure
View file @
ee7692d2
...
...
@@ -9345,7 +9345,7 @@ echo "configure:9329: checking assembler instructions" >&5
fi
if
test
x
"
$gcc_cv_as_instructions
"
!=
x
;
then
cat
>>
confdefs.h
<<
EOF
#define HAVE_GAS_`echo "
$gcc_cv_as_instructions
" | tr 'a-z ' 'A-Z_'` 1
#define HAVE_GAS_`echo "
$gcc_cv_as_instructions
" |
sed -e 's/
$/
/' |
tr 'a-z ' 'A-Z_'` 1
EOF
fi
...
...
gcc/configure.in
View file @
ee7692d2
...
...
@@ -4809,7 +4809,7 @@ changequote([,])dnl
rm -f conftest.s conftest.o
fi
if test x"$gcc_cv_as_instructions" != x; then
AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | tr '[a-z ]' '[A-Z_]'`)
AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" |
sed -e 's/ $//' |
tr '[a-z ]' '[A-Z_]'`)
fi
AC_MSG_RESULT($gcc_cv_as_instructions)
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment