Summary: Add -data-info-line command + test Test Plan: ./dotest.py -v --executable $BUILDDIR/bin/lldb tools/lldb-mi/ Reviewers: abidh Reviewed By: abidh Subscribers: lldb-commits, abidh Differential Revision: http://reviews.llvm.org/D9276 llvm-svn: 236208
18 lines
514 B
C++
18 lines
514 B
C++
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
const char g_CharArray[] = "\x10\x11\x12\x13";
|
|
static const char s_CharArray[] = "\x20\x21\x22\x23";
|
|
|
|
int
|
|
main(int argc, char const *argv[])
|
|
{ // FUNC_main
|
|
return 0;
|
|
}
|