Use InstrSlots::NUM rather than pre-dividing by four. Also, mark this const.
[oota-llvm.git] / test / FrontendC / 2007-09-05-ConstCtor.c
index c267a5903345034b7f580f69f8fb7cf5bfbaa306..8e0e9945ffaa97fdeec2b094c0e083b5eb8022fa 100644 (file)
@@ -8,7 +8,7 @@ struct A {
 void bar(struct A *a);
 
 void bork() {
-  const unsigned long vcgt = 'vcgt';
+  const unsigned long vcgt = 1234;
   struct A a = { vcgt };
   bar(&a);
 }