From 3f2578a3e361ae47f16da692d25fe4b5616b57f2 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sat, 8 Jun 2019 17:11:20 +0000 Subject: [PATCH] * don't quote LLVM calling convention name (that will cause it to be ignored) o fixes tasm10a and tx64ccnv.ll with LLVM git-svn-id: branches/debug_eh@42193 - --- compiler/llvm/agllvm.pas | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/llvm/agllvm.pas b/compiler/llvm/agllvm.pas index a110636737..256655c887 100644 --- a/compiler/llvm/agllvm.pas +++ b/compiler/llvm/agllvm.pas @@ -647,9 +647,8 @@ implementation tmpstr:=llvm_callingconvention_name(taillvm(hp).oper[2]^.callingconvention); if tmpstr<>'' then begin - owner.writer.AsmWrite(' "'); + owner.writer.AsmWrite(' '); owner.writer.AsmWrite(tmpstr); - owner.writer.AsmWrite('"'); end; opdone:=true; tmpstr:=llvmencodetypename(taillvm(hp).oper[3]^.def);