From: Krzysztof Parzyszek Date: Fri, 21 Jul 2017 21:23:05 +0000 (+0000) Subject: [Hexagon] Attempt to fix selfhost bots X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e46dcf325bcc75f7d6df5d95ac8df4a772a2af16;p=clang [Hexagon] Attempt to fix selfhost bots The codegen testcase was checking for specific value names. Make it ignore the names instead as they are irrelevant. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@308782 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/hexagon-inline-asm.c b/test/CodeGen/hexagon-inline-asm.c index 8d1308ee5d..eada1de9c9 100644 --- a/test/CodeGen/hexagon-inline-asm.c +++ b/test/CodeGen/hexagon-inline-asm.c @@ -18,6 +18,6 @@ void foo(v64 v0, v64 v1, v64 *p) { void fred(unsigned *p, unsigned m, unsigned v) { asm ("memw(%0++%1) = %2" : : "r"(p),"a"(m),"r"(v) : "memory"); -// CHECK: call void asm sideeffect "memw($0++$1) = $2", "r,a,r,~{memory}"(i32* %0, i32 %1, i32 %2) +// CHECK: call void asm sideeffect "memw($0++$1) = $2", "r,a,r,~{memory}"(i32* %{{.*}}, i32 %{{.*}}, i32 %{{.*}}) }