Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
      2 
      3 // PR8839
      4 extern "C" char memmove();
      5 
      6 int main() {
      7   // CHECK: call {{signext i8|i8}} @memmove()
      8   return memmove();
      9 }
     10