Skip to content
Snippets Groups Projects
Commit e46dcf32 authored by Krzysztof Parzyszek's avatar Krzysztof Parzyszek
Browse files

[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
parent ce060c81
No related branches found
No related tags found
No related merge requests found
......@@ -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 %{{.*}})
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment