]> granicus.if.org Git - clang/commitdiff
Fix test failure if this value doesn't end up named %0.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 23 Jun 2015 23:13:31 +0000 (23:13 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 23 Jun 2015 23:13:31 +0000 (23:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240479 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/arm-microsoft-intrinsics.c

index 44782453a7a19e9bd4f3262187a8f325bb7199f5..e073cc2c0c0524491e9c0c727eca80f73ba43151 100644 (file)
@@ -51,13 +51,13 @@ void check_MoveToCoprocessor(unsigned int value) {
   _MoveToCoprocessor(value, 10, 7, 1, 0, 0);
 }
 
-// CHECK-MSVC: @llvm.arm.mcr(i32 10, i32 7, i32 %0, i32 1, i32 0, i32 0)
+// CHECK-MSVC: @llvm.arm.mcr(i32 10, i32 7, i32 %{{[^,]*}}, i32 1, i32 0, i32 0)
 // CHECK-EABI: error: implicit declaration of function '_MoveToCoprocessor'
 
 void check_MoveToCoprocessor2(unsigned int value) {
   _MoveToCoprocessor2(value, 10, 7, 1, 0, 0);
 }
 
-// CHECK-MSVC: @llvm.arm.mcr2(i32 10, i32 7, i32 %0, i32 1, i32 0, i32 0)
+// CHECK-MSVC: @llvm.arm.mcr2(i32 10, i32 7, i32 %{{[^,]*}}, i32 1, i32 0, i32 0)
 // CHECK-EABI: error: implicit declaration of function '_MoveToCoprocessor2'