Deleted Added
full compact
TargetSelect.h (226890) TargetSelect.h (235633)
1//===- TargetSelect.h - Target Selection & Registration ---------*- C++ -*-===//
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//===----------------------------------------------------------------------===//

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

144#ifdef LLVM_NATIVE_ASMPARSER
145 LLVM_NATIVE_ASMPARSER();
146 return false;
147#else
148 return true;
149#endif
150 }
151
1//===- TargetSelect.h - Target Selection & Registration ---------*- C++ -*-===//
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//===----------------------------------------------------------------------===//

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

144#ifdef LLVM_NATIVE_ASMPARSER
145 LLVM_NATIVE_ASMPARSER();
146 return false;
147#else
148 return true;
149#endif
150 }
151
152 /// InitializeNativeTargetDisassembler - The main program should call
153 /// this function to initialize the native target disassembler.
154 inline bool InitializeNativeTargetDisassembler() {
155 // If we have a native target, initialize the corresponding disassembler.
156#ifdef LLVM_NATIVE_DISASSEMBLER
157 LLVM_NATIVE_DISASSEMBLER();
158 return false;
159#else
160 return true;
161#endif
162 }
163
152}
153
154#endif
164}
165
166#endif