Commit 9ef6d39a by Jeffrey Oldham Committed by Jeffrey D. Oldham

target-supports.exp (check_alias_available): Modified to indicate aliases not…

target-supports.exp (check_alias_available): Modified to indicate aliases not supported if only weak aliases are supported.

2001-01-03  Jeffrey Oldham  <oldham@codesourcery.com>

	* lib/target-supports.exp (check_alias_available): Modified to
	indicate aliases not supported if only weak aliases are supported.

From-SVN: r38667
parent 79424a4f
2001-01-03 Jeffrey Oldham <oldham@codesourcery.com>
* lib/target-supports.exp (check_alias_available): Modified to
indicate aliases not supported if only weak aliases are supported.
2001-01-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.c-torture/execute/string-opt-8.c: Add more testcases.
......
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (C) 1999, 2001 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
......@@ -85,7 +85,12 @@ proc check_alias_available { testfile } {
set alias_available_saved no
}
} else {
set alias_available_saved dontknow
if [regexp "only weak aliases are supported" $lines] {
verbose "check_alias_available target supports only weak aliases" 2
set alias_available_saved no
} else {
set alias_available_saved dontknow
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment