[cfe-commits] r134840 - /cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp

Chris Lattner sabre at nondot.org
Sat Jul 9 11:33:01 PDT 2011


Author: lattner
Date: Sat Jul  9 13:33:01 2011
New Revision: 134840

URL: http://llvm.org/viewvc/llvm-project?rev=134840&view=rev
Log:
fix this on 32-bit hosts.

Modified:
    cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp

Modified: cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp?rev=134840&r1=134839&r2=134840&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/virt-call-offsets.cpp Sat Jul  9 13:33:01 2011
@@ -5,4 +5,4 @@
 struct C : B { virtual void a(); };
 void (C::*x)() = &C::a;
 
-// CHECK: @x = global { i64, i64 } { i{{[0-9]+}} 1, i{{[0-9]+}} 0 }
+// CHECK: @x = global { i{{[0-9]+}}, i{{[0-9]+}} } { i{{[0-9]+}} 1, i{{[0-9]+}} 0 }





More information about the cfe-commits mailing list