hanchenye-llvm-project/clang/test/CodeGenCXX/builtins.cpp

10 lines
173 B
C++

// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// PR8839
extern "C" char memmove();
int main() {
// CHECK: call {{signext i8|i8}} @memmove()
return memmove();
}