r308782 - [Hexagon] Attempt to fix selfhost bots

Krzysztof Parzyszek via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 21 14:23:05 PDT 2017


Author: kparzysz
Date: Fri Jul 21 14:23:05 2017
New Revision: 308782

URL: http://llvm.org/viewvc/llvm-project?rev=308782&view=rev
Log:
[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. 

Modified:
    cfe/trunk/test/CodeGen/hexagon-inline-asm.c

Modified: cfe/trunk/test/CodeGen/hexagon-inline-asm.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/hexagon-inline-asm.c?rev=308782&r1=308781&r2=308782&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/hexagon-inline-asm.c (original)
+++ cfe/trunk/test/CodeGen/hexagon-inline-asm.c Fri Jul 21 14:23:05 2017
@@ -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 %{{.*}})
 }
 




More information about the cfe-commits mailing list