[llvm] r180839 - Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.
Filip Pizlo
fpizlo at apple.com
Tue Apr 30 23:46:59 PDT 2013
Author: fpizlo
Date: Wed May 1 01:46:59 2013
New Revision: 180839
URL: http://llvm.org/viewvc/llvm-project?rev=180839&view=rev
Log:
Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.
Modified:
llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
Modified: llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp?rev=180839&r1=180838&r2=180839&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp Wed May 1 01:46:59 2013
@@ -66,12 +66,14 @@ TEST_F(MCJITCAPITest, simple_function) {
LLVMMCJITCompilerOptions options;
memset(&options, 0, sizeof(options));
options.OptLevel = 2;
- options.NoFramePointerElim = false; // Just ensure that this field still exists.
+
+ // Just ensure that this field still exists.
+ options.NoFramePointerElim = false;
LLVMExecutionEngineRef engine;
ASSERT_EQ(
- 0, LLVMCreateMCJITCompilerForModule(&engine, module, &options, sizeof(options),
- &error));
+ 0, LLVMCreateMCJITCompilerForModule(&engine, module, &options,
+ sizeof(options), &error));
LLVMPassManagerRef pass = LLVMCreatePassManager();
LLVMAddTargetData(LLVMGetExecutionEngineTargetData(engine), pass);
More information about the llvm-commits
mailing list