mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 01:15:50 +08:00
Initial test case test_modify_source_file_while_debugging() in TestSourceManager.py tests the caching mechanism of the source manager. llvm-svn: 121389
7 lines
140 B
C
7 lines
140 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
printf("Hello world.\n"); // Set break point at this line.
|
|
return 0;
|
|
}
|