Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / split-debug.test
blob7b9f01a8bbd8bd5d61f175a9b94d710d36b274f9
1 #Source:
2 ##include <stdio.h>
3 #static inline int inctwo (int *a) {
4 #  printf ("%d\n",(*a)++);
5 #  return (*a)++;
6 #}
7 #static inline int inc (int *a) {
8 #  printf ("%d\n",inctwo(a));
9 #  return (*a)++;
13 #int main () {
14 #  int x = 1;
15 #  return inc(&x);
18 #Build as : clang -g -O2 addr.c
20 RUN: mkdir -p %t/.debug
21 RUN: llvm-objcopy --keep-section=.debug_info %p/Inputs/addr.exe %t/.debug/addr
22 RUN: llvm-objcopy --strip-debug --add-gnu-debuglink=%t/.debug/addr %p/Inputs/addr.exe %t/addr.exe
23 RUN: llvm-symbolizer --print-address --obj=%t/addr.exe 0x40054d | FileCheck %s
25 #CHECK: 0x40054d
26 #CHECK: {{[/\]+}}tmp{{[/\]+}}x.c:14:0