Fix comment to use llvm 2.x syntax.
authorNick Lewycky <nicholas@mxc.ca>
Wed, 6 Apr 2011 20:38:44 +0000 (20:38 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Wed, 6 Apr 2011 20:38:44 +0000 (20:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129025 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index 25a61c028904137781be04af6a98a2e8ef700b84..438e119d97407e16a97c7e6675e89de5600882d0 100644 (file)
@@ -311,7 +311,7 @@ void ExecutionEngine::runStaticConstructorsDestructors(Module *module,
   // it.
   if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
 
-  // Should be an array of '{ int, void ()* }' structs.  The first value is
+  // Should be an array of '{ i32, void ()* }' structs.  The first value is
   // the init priority, which we ignore.
   ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
   if (!InitList) return;