summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/builtins.cpp
blob: c9b0bff0f2e21dd08b947e05fc7a6ccede77970f (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s

// PR8839
extern "C" char memmove();

int main() {
  // CHECK: call {{signext i8|i8}} @memmove()
  return memmove();
}
OpenPOWER on IntegriCloud