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 | a4fa74e38163ec3dc652f31ddac2c08e4a05889c (patch) | |
tree | d0c6a619f1b0cc66ae272ca0a345b1b6dca6c19b /unittests | |
parent | 38d32da0f10a6c5a43dd8f134fb482e271b2c982 (diff) | |
download | external_llvm-a4fa74e38163ec3dc652f31ddac2c08e4a05889c.zip external_llvm-a4fa74e38163ec3dc652f31ddac2c08e4a05889c.tar.gz external_llvm-a4fa74e38163ec3dc652f31ddac2c08e4a05889c.tar.bz2 |
Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index 780fbc1..8dd5795 100644 --- a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/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); |