diff options
author | Reid Kleckner <rnk@google.com> | 2016-11-29 00:39:37 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-11-29 00:39:37 +0000 |
commit | fec0f32ea90ec50c79492ce046c3622cfe981d29 (patch) | |
tree | d0a147d5a51a4daaae8d3abb49682819d5530008 /clang/test/CodeGen/mozilla-ms-inline-asm.c | |
parent | c68a6c4ca9faf6eb332383b105483204b2ed61d5 (diff) | |
download | bcm5719-llvm-fec0f32ea90ec50c79492ce046c3622cfe981d29.tar.gz bcm5719-llvm-fec0f32ea90ec50c79492ce046c3622cfe981d29.zip |
Use ${:uid} to generate unique MS asm labels, not {:uid}
llvm-svn: 288093
Diffstat (limited to 'clang/test/CodeGen/mozilla-ms-inline-asm.c')
-rw-r--r-- | clang/test/CodeGen/mozilla-ms-inline-asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/mozilla-ms-inline-asm.c b/clang/test/CodeGen/mozilla-ms-inline-asm.c index b15595632d2..3335a87fefe 100644 --- a/clang/test/CodeGen/mozilla-ms-inline-asm.c +++ b/clang/test/CodeGen/mozilla-ms-inline-asm.c @@ -20,7 +20,7 @@ void invoke(void* that, unsigned methodIndex, // CHECK: call void asm sideeffect inteldialect // CHECK: mov edx,dword ptr $1 // CHECK: test edx,edx -// CHECK: jz {{[^_]*}}__MSASMLABEL_.{:uid}__noparams +// CHECK: jz {{[^_]*}}__MSASMLABEL_.${:uid}__noparams // ^ Can't use {{.*}} here because the matching is greedy. // CHECK: mov eax,edx // CHECK: shl eax,$$3 @@ -28,7 +28,7 @@ void invoke(void* that, unsigned methodIndex, // CHECK: mov ecx,esp // CHECK: push dword ptr $0 // CHECK: call dword ptr $2 -// CHECK: {{.*}}__MSASMLABEL_.{:uid}__noparams: +// CHECK: {{.*}}__MSASMLABEL_.${:uid}__noparams: // CHECK: mov ecx,dword ptr $3 // CHECK: push ecx // CHECK: mov edx,[ecx] |