diff options
author | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-06-29 06:36:26 +0000 |
---|---|---|
committer | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-06-29 06:36:26 +0000 |
commit | ecf89ff1d3aa43eff2a33f1b03a1610a9a7a513e (patch) | |
tree | b26d310a5d863e79a2d06e636ca93306668d0032 /compiler/fppu.pas | |
parent | 4b61fa70948ed683f5566c75b77738b180cee678 (diff) | |
download | fpc-ecf89ff1d3aa43eff2a33f1b03a1610a9a7a513e.tar.gz |
fppu.pas, tppumodule.readsourcefiles:
set "temp" string to a useful value if "sources_avail" is "false" as otherwise
garbage is printed if "-vu" is given
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@21733 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/fppu.pas')
-rw-r--r-- | compiler/fppu.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/fppu.pas b/compiler/fppu.pas index d97f172d40..fb16cc2bfe 100644 --- a/compiler/fppu.pas +++ b/compiler/fppu.pas @@ -795,7 +795,9 @@ var { the indexing is wrong here PM } sourcefiles.register_file(hp); end; - end; + end + else + temp:=' not available'; if is_main then begin mainsource:=hs; |