blob: 0629c31015c76b8c63b722286c33fb261e6c03a8 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// PR8839
extern "C" char memmove();
int main() {
// CHECK: call signext i8 @memmove()
return memmove();
}