mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 20:06:46 +00:00
Fix parameter ordering bug in createDebugIRPass()
- Thanks to Ilia Filippov for pointing out the inconsistency! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187424 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e3d60ac334
commit
f6de55f5d4
@ -91,12 +91,12 @@ FunctionPass *createBoundsCheckingPass();
|
|||||||
///
|
///
|
||||||
/// @param HideDebugIntrinsics Omit debug intrinsics in emitted IR source file.
|
/// @param HideDebugIntrinsics Omit debug intrinsics in emitted IR source file.
|
||||||
/// @param HideDebugMetadata Omit debug metadata in emitted IR source file.
|
/// @param HideDebugMetadata Omit debug metadata in emitted IR source file.
|
||||||
/// @param Filename Embed this file name in the debug information.
|
|
||||||
/// @param Directory Embed this directory in the debug information.
|
/// @param Directory Embed this directory in the debug information.
|
||||||
|
/// @param Filename Embed this file name in the debug information.
|
||||||
ModulePass *createDebugIRPass(bool HideDebugIntrinsics,
|
ModulePass *createDebugIRPass(bool HideDebugIntrinsics,
|
||||||
bool HideDebugMetadata,
|
bool HideDebugMetadata,
|
||||||
StringRef Filename = StringRef(),
|
StringRef Directory = StringRef(),
|
||||||
StringRef Directory = StringRef());
|
StringRef Filename = StringRef());
|
||||||
|
|
||||||
/// createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB
|
/// createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB
|
||||||
/// (or GDB) with an existing IR file on disk. When creating
|
/// (or GDB) with an existing IR file on disk. When creating
|
||||||
|
Loading…
Reference in New Issue
Block a user