From 81c7e1871f852bb42493bf181087b75fde3a0fcf Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Thu, 13 Feb 2014 00:31:14 +0000 Subject: [PATCH] Fix misleading comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201279 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index 0a696a47860..fa79a2e7df9 100644 --- a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -173,7 +173,7 @@ protected: LLVMSetTarget(Module, HostTriple.c_str()); - // build a global variable initialized to "Hello World!" + // build a global int32 variable initialized to 42. LLVMValueRef GlobalVar = LLVMAddGlobal(Module, LLVMInt32Type(), "intVal"); LLVMSetInitializer(GlobalVar, LLVMConstInt(LLVMInt32Type(), 42, 0)); -- 2.11.0