mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-29 15:37:46 +00:00
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
This commit is contained in:
parent
38d32da0f1
commit
a4fa74e381
@ -66,12 +66,14 @@ TEST_F(MCJITCAPITest, simple_function) {
|
|||||||
LLVMMCJITCompilerOptions options;
|
LLVMMCJITCompilerOptions options;
|
||||||
memset(&options, 0, sizeof(options));
|
memset(&options, 0, sizeof(options));
|
||||||
options.OptLevel = 2;
|
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;
|
LLVMExecutionEngineRef engine;
|
||||||
ASSERT_EQ(
|
ASSERT_EQ(
|
||||||
0, LLVMCreateMCJITCompilerForModule(&engine, module, &options, sizeof(options),
|
0, LLVMCreateMCJITCompilerForModule(&engine, module, &options,
|
||||||
&error));
|
sizeof(options), &error));
|
||||||
|
|
||||||
LLVMPassManagerRef pass = LLVMCreatePassManager();
|
LLVMPassManagerRef pass = LLVMCreatePassManager();
|
||||||
LLVMAddTargetData(LLVMGetExecutionEngineTargetData(engine), pass);
|
LLVMAddTargetData(LLVMGetExecutionEngineTargetData(engine), pass);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user