Fix comment to use llvm 2.x syntax.

llvm-svn: 129025
This commit is contained in:
Nick Lewycky 2011-04-06 20:38:44 +00:00
parent e30f330393
commit 0cbfcb2b6d
1 changed files with 1 additions and 1 deletions

View 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;