mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 04:40:53 -05:00
10 lines
247 B
C
10 lines
247 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
void *test1() {
|
|
// CHECK: call i8* @llvm.returnaddress
|
|
return __builtin_return_address(1);
|
|
}
|
|
void *test2() {
|
|
// CHECK: call i8* @llvm.frameaddress
|
|
return __builtin_frame_address(0);
|
|
}
|