mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 04:25:45 -04:00

Summary: The 'memory region' command is at the moment not tested at all by our test suite. This patch just adds a basic test that at least provides some basic testing. Reviewers: #lldb, davide Reviewed By: #lldb, davide Subscribers: vsk, davide, lldb-commits Differential Revision: https://reviews.llvm.org/D51930 llvm-svn: 342042
7 lines
172 B
C++
7 lines
172 B
C++
#include <iostream>
|
|
|
|
int main (int argc, char const **argv) {
|
|
std::cout << "Program with sections" << std::endl;
|
|
return 0; // Run here before printing memory regions
|
|
}
|