diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-04-06 20:38:44 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-04-06 20:38:44 +0000 |
commit | 0cbfcb2b6dd4df21dec5fa6abf4daa61692fb037 (patch) | |
tree | 6fcc9e9f95bca97b315a31870e3f64f1bb76c690 /llvm/lib/ExecutionEngine | |
parent | e30f330393848f141d0399610e2ae1231a85f971 (diff) | |
download | bcm5719-llvm-0cbfcb2b6dd4df21dec5fa6abf4daa61692fb037.tar.gz bcm5719-llvm-0cbfcb2b6dd4df21dec5fa6abf4daa61692fb037.zip |
Fix comment to use llvm 2.x syntax.
llvm-svn: 129025
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 25a61c02890..438e119d974 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<ConstantArray>(GV->getInitializer()); if (!InitList) return; |