mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 17:32:57 -05:00
9 lines
166 B
C++
9 lines
166 B
C++
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// PR8839
|
|
extern "C" char memmove();
|
|
|
|
int main() {
|
|
// CHECK: call signext i8 @memmove()
|
|
return memmove();
|
|
}
|