]> granicus.if.org Git - clang/commitdiff
[Hexagon] Attempt to fix selfhost bots
authorKrzysztof Parzyszek <kparzysz@codeaurora.org>
Fri, 21 Jul 2017 21:23:05 +0000 (21:23 +0000)
committerKrzysztof Parzyszek <kparzysz@codeaurora.org>
Fri, 21 Jul 2017 21:23:05 +0000 (21:23 +0000)
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

test/CodeGen/hexagon-inline-asm.c

index 8d1308ee5d8a52d0c1f38eeebeb24f7042b88d31..eada1de9c97a2c66c725c5ff10fb2b4380a0e78a 100644 (file)
@@ -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 %{{.*}})
 }