mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
a5855c0f74
Differential Revision: http://reviews.llvm.org/D15876 llvm-svn: 257115
35 lines
863 B
Plaintext
35 lines
863 B
Plaintext
#Source:
|
|
##include <stdio.h>
|
|
#static inline int inctwo (int *a) {
|
|
# printf ("%d\n",(*a)++);
|
|
# return (*a)++;
|
|
#}
|
|
#static inline int inc (int *a) {
|
|
# printf ("%d\n",inctwo(a));
|
|
# return (*a)++;
|
|
#}
|
|
#
|
|
#
|
|
#int main () {
|
|
# int x = 1;
|
|
# return inc(&x);
|
|
#}
|
|
#
|
|
#Build as : clang -g -O2 addr.c
|
|
|
|
RUN: llvm-symbolizer -print-address -obj=%p/Inputs/addr.exe < %p/Inputs/addr.inp | FileCheck %s
|
|
RUN: llvm-symbolizer -inlining -print-address -pretty-print -obj=%p/Inputs/addr.exe < %p/Inputs/addr.inp | FileCheck --check-prefix="PRETTY" %s
|
|
|
|
#CHECK: some text
|
|
#CHECK: 0x40054d
|
|
#CHECK: main
|
|
#CHECK: {{[/\]+}}tmp{{[/\]+}}x.c:14:0
|
|
#CHECK: some text2
|
|
#
|
|
#PRETTY: some text
|
|
#PRETTY: {{[0x]+}}40054d: inctwo at {{[/\]+}}tmp{{[/\]+}}x.c:3:3
|
|
#PRETTY: (inlined by) inc at {{[/\]+}}tmp{{[/\]+}}x.c:7:0
|
|
#PRETTY (inlined by) main at {{[/\]+}}tmp{{[/\]+}}x.c:14:0
|
|
#PRETTY: some text2
|
|
|