Displaying 2 results from an estimated 2 matches for "llvm_arch".
2019 Dec 11
4
modification on lnt to recognize new architecture
...m-lnt)? I checked lists.llvm.org mailing lists,
but it is not clear to me. Thanks in advance.
-----------
diff --git a/lnt/tests/nt.py b/lnt/tests/nt.py
index 4ce6647..ce37687 100644
--- a/lnt/tests/nt.py
+++ b/lnt/tests/nt.py
@@ -420,6 +420,8 @@ class TestConfiguration(object):
llvm_arch = 'Sparc'
elif arch in ('mips', 'mipsel', 'mips64', 'mips64el'):
llvm_arch = 'Mips'
+ elif arch in ('ve'):
+ llvm_arch = 'VE'
if llvm_arch is not None:
make...
2007 Sep 20
1
[LLVMdev] Valgrind Help Needed
On Sep 19, 2007, at 5:41 PM, Devang Patel wrote:
> On Sep 19, 2007, at 4:48 PM, Bill Wendling wrote:
>
> In llvm-backend.cpp :
>
> 1086 if (GV->getName() != Name) {
> 1087 Function *F = TheModule->getFunction(Name);
> 1088 assert(F && F->isDeclaration() && "A function turned
> into a global?");
> 1089