Fix parameter ordering bug in createDebugIRPass()

- Thanks to Ilia Filippov for pointing out the inconsistency!

llvm-svn: 187424
This commit is contained in:
Daniel Malea 2013-07-30 16:16:11 +00:00
parent a4658a5c86
commit 788d126ca1
1 changed files with 3 additions and 3 deletions

View File

@ -91,12 +91,12 @@ FunctionPass *createBoundsCheckingPass();
///
/// @param HideDebugIntrinsics Omit debug intrinsics 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 Filename Embed this file name in the debug information.
ModulePass *createDebugIRPass(bool HideDebugIntrinsics,
bool HideDebugMetadata,
StringRef Filename = StringRef(),
StringRef Directory = StringRef());
StringRef Directory = StringRef(),
StringRef Filename = StringRef());
/// createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB
/// (or GDB) with an existing IR file on disk. When creating