From 0cbfcb2b6dd4df21dec5fa6abf4daa61692fb037 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Wed, 6 Apr 2011 20:38:44 +0000 Subject: [PATCH] Fix comment to use llvm 2.x syntax. llvm-svn: 129025 --- llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 25a61c028904..438e119d9740 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -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(GV->getInitializer()); if (!InitList) return;