Deleted Added
full compact
lli.cpp (218885) lli.cpp (221337)
1//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 119 unchanged lines hidden (view full) ---

128 PrettyStackTraceProgram X(argc, argv);
129
130 LLVMContext &Context = getGlobalContext();
131 atexit(do_shutdown); // Call llvm_shutdown() on exit.
132
133 // If we have a native target, initialize it to ensure it is linked in and
134 // usable by the JIT.
135 InitializeNativeTarget();
1//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 119 unchanged lines hidden (view full) ---

128 PrettyStackTraceProgram X(argc, argv);
129
130 LLVMContext &Context = getGlobalContext();
131 atexit(do_shutdown); // Call llvm_shutdown() on exit.
132
133 // If we have a native target, initialize it to ensure it is linked in and
134 // usable by the JIT.
135 InitializeNativeTarget();
136 InitializeNativeTargetAsmPrinter();
136
137 cl::ParseCommandLineOptions(argc, argv,
138 "llvm interpreter & dynamic compiler\n");
139
140 // If the user doesn't want core files, disable them.
141 if (DisableCoreFiles)
142 sys::Process::PreventCoreFiles();
143

--- 127 unchanged lines hidden ---
137
138 cl::ParseCommandLineOptions(argc, argv,
139 "llvm interpreter & dynamic compiler\n");
140
141 // If the user doesn't want core files, disable them.
142 if (DisableCoreFiles)
143 sys::Process::PreventCoreFiles();
144

--- 127 unchanged lines hidden ---