blob: 0629c31015c76b8c63b722286c33fb261e6c03a8 [file] [log] [blame]
Douglas Gregorb68e3992010-12-21 19:47:46 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3// PR8839
4extern "C" char memmove();
5
6int main() {
7 // CHECK: call signext i8 @memmove()
8 return memmove();
9}