diff options
author | Coby Tayree <coby.tayree@intel.com> | 2017-08-24 08:47:26 +0000 |
---|---|---|
committer | Coby Tayree <coby.tayree@intel.com> | 2017-08-24 08:47:26 +0000 |
commit | cfa3810aa0137984a730fb3bc65d0307ed7f1640 (patch) | |
tree | e0fabb65daef64d13170d2e6d9e26872338f3d0e /clang/test/CodeGenCXX/ms-inline-asm-return.cpp | |
parent | d89128925bd56ca314ffb4c895b06e566560c51a (diff) | |
download | bcm5719-llvm-cfa3810aa0137984a730fb3bc65d0307ed7f1640.tar.gz bcm5719-llvm-cfa3810aa0137984a730fb3bc65d0307ed7f1640.zip |
Fixups to FE tests affected by D36793
Differential Revision: https://reviews.llvm.org/D36794
llvm-svn: 311640
Diffstat (limited to 'clang/test/CodeGenCXX/ms-inline-asm-return.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/ms-inline-asm-return.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/ms-inline-asm-return.cpp b/clang/test/CodeGenCXX/ms-inline-asm-return.cpp index 51671c0bcda..837f1b437a4 100644 --- a/clang/test/CodeGenCXX/ms-inline-asm-return.cpp +++ b/clang/test/CodeGenCXX/ms-inline-asm-return.cpp @@ -70,7 +70,7 @@ FourChars f_s4() { } } // CHECK-LABEL: define i32 @f_s4() -// CHECK: %[[r:[^ ]*]] = call i32 asm sideeffect inteldialect "mov eax, $$0x01010101", "={eax},~{eax},{{.*}}" +// CHECK: %[[r:[^ ]*]] = call i32 asm sideeffect inteldialect "mov eax, $$16843009", "={eax},~{eax},{{.*}}" // CHECK: store i32 %[[r]], i32* %{{.*}} // CHECK: %[[r_i32:[^ ]*]] = load i32, i32* %{{.*}} // CHECK: ret i32 %[[r_i32]] @@ -85,7 +85,7 @@ EightChars f_s8() { } } // CHECK-LABEL: define i64 @f_s8() -// CHECK: %[[r:[^ ]*]] = call i64 asm sideeffect inteldialect "mov eax, $$01010101h\0A\09mov edx, $$01010101b", "=A,~{eax},{{.*}}" +// CHECK: %[[r:[^ ]*]] = call i64 asm sideeffect inteldialect "mov eax, $$16843009\0A\09mov edx, $$85", "=A,~{eax},{{.*}}" // CHECK: store i64 %[[r]], i64* %{{.*}} // CHECK: %[[r_i64:[^ ]*]] = load i64, i64* %{{.*}} // CHECK: ret i64 %[[r_i64]] |