blob: c9b0bff0f2e21dd08b947e05fc7a6ccede77970f [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() {
Tim Northover55f05932013-02-07 15:11:36 +00007 // CHECK: call {{signext i8|i8}} @memmove()
Douglas Gregorb68e3992010-12-21 19:47:46 +00008 return memmove();
9}