Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit.
authorFilip Pizlo <fpizlo@apple.com>
Wed, 1 May 2013 06:46:59 +0000 (06:46 +0000)
committerFilip Pizlo <fpizlo@apple.com>
Wed, 1 May 2013 06:46:59 +0000 (06:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180839 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp

index 780fbc1b7b90ea549e1abdda263182b3ec8884c8..8dd5795dc554efe60f462ee25e7e9e436202e5ac 100644 (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);