diff options
author | Eric Christopher <echristo@gmail.com> | 2017-07-25 19:17:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2017-07-25 19:17:32 +0000 |
commit | cf94152f274c65a583dfc5cf1787fbbef752e004 (patch) | |
tree | 5e1c9f2e8add9d8faad15d2016e68774fa9e0aeb /clang/test/CodeGenCXX/ms-inline-asm-return.cpp | |
parent | 578363ac08da813a59cd19f3d41bd8e5af019d84 (diff) | |
download | bcm5719-llvm-cf94152f274c65a583dfc5cf1787fbbef752e004.tar.gz bcm5719-llvm-cf94152f274c65a583dfc5cf1787fbbef752e004.zip |
Revert "This patch enables the usage of constant Enum identifiers within Microsoft style inline assembly statements." as it is causing msan failures.
This reverts commits r308985 and r308965
llvm-svn: 309004
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 837f1b437a4..51671c0bcda 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, $$16843009", "={eax},~{eax},{{.*}}" +// CHECK: %[[r:[^ ]*]] = call i32 asm sideeffect inteldialect "mov eax, $$0x01010101", "={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, $$16843009\0A\09mov edx, $$85", "=A,~{eax},{{.*}}" +// CHECK: %[[r:[^ ]*]] = call i64 asm sideeffect inteldialect "mov eax, $$01010101h\0A\09mov edx, $$01010101b", "=A,~{eax},{{.*}}" // CHECK: store i64 %[[r]], i64* %{{.*}} // CHECK: %[[r_i64:[^ ]*]] = load i64, i64* %{{.*}} // CHECK: ret i64 %[[r_i64]] |