diff options
author | Filip Pizlo <fpizlo@apple.com> | 2013-05-01 06:46:59 +0000 |
---|---|---|
committer | Filip Pizlo <fpizlo@apple.com> | 2013-05-01 06:46:59 +0000 |
commit | 547ea91b1d17a415595dbbfbf7f4d1a285a98bd2 (patch) | |
tree | 70dc373dfb1d1ed9221d57bae56fd795227177b7 /llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | |
parent | f7f33ed31e71cd76b63e67df1d6ebd392a8c8e9c (diff) | |
download | bcm5719-llvm-547ea91b1d17a415595dbbfbf7f4d1a285a98bd2.tar.gz bcm5719-llvm-547ea91b1d17a415595dbbfbf7f4d1a285a98bd2.zip |
Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.
llvm-svn: 180839
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index 780fbc1b7b9..8dd5795dc55 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -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); |