[compiler-rt] r299092 - Fixup for r299085: On Windows %p doesn't print 0x prefix.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 30 10:48:42 PDT 2017


Author: kuba.brecka
Date: Thu Mar 30 12:48:41 2017
New Revision: 299092

URL: http://llvm.org/viewvc/llvm-project?rev=299092&view=rev
Log:
Fixup for r299085: On Windows %p doesn't print 0x prefix.


Modified:
    compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc
    compiler-rt/trunk/test/asan/TestCases/scribble.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc?rev=299092&r1=299091&r2=299092&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc Thu Mar 30 12:48:41 2017
@@ -49,7 +49,7 @@ int main() {
 
   my_object->print_my_class_name();
   // CHECK-NOSCRIBBLE: class name: MyClass
-  // CHECK-SCRIBBLE: isa = {{0x5555555555555555|0x55555555}}
+  // CHECK-SCRIBBLE: isa = {{(0x)?}}{{5555555555555555|55555555}}
 
   fprintf(stderr, "okthxbai!\n");
   // CHECK-SCRIBBLE: okthxbai!

Modified: compiler-rt/trunk/test/asan/TestCases/scribble.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/scribble.cc?rev=299092&r1=299091&r2=299092&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/scribble.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/scribble.cc Thu Mar 30 12:48:41 2017
@@ -48,7 +48,7 @@ int main() {
 
   my_object->print_my_class_name();
   // CHECK-NOSCRIBBLE: class name: MyClass
-  // CHECK-SCRIBBLE: isa = {{0x5555555555555555|0x55555555}}
+  // CHECK-SCRIBBLE: isa = {{(0x)?}}{{5555555555555555|55555555}}
 
   fprintf(stderr, "okthxbai!\n");
   // CHECK-SCRIBBLE: okthxbai!




More information about the llvm-commits mailing list