Let's remember we want better codegen for these.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78310 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/virt.cpp b/test/CodeGenCXX/virt.cpp
index 35548de..d2f5e22 100644
--- a/test/CodeGenCXX/virt.cpp
+++ b/test/CodeGenCXX/virt.cpp
@@ -42,6 +42,8 @@
   F f;
   static int sz = (char *)(&f.f) - (char *)(&f);
   j = sz;
+  // FIXME: These should result in a frontend constant a la fold, no run time
+  // initializer
   // CHECK-LP32: movl $4, __ZZ5test2vE2sz
   // CHECK-LP64: movl $8, __ZZ5test2vE2sz(%rip)
 }