1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.

llvm-svn: 180839
This commit is contained in:
Filip Pizlo 2013-05-01 06:46:59 +00:00
parent cff6c527b8
commit a32d795d04

View File

@ -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);