brintos

brintos / llvm-project-archived public Read only

0
0
Text · 184 B · 9a9c642 Raw
11 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s2 3char *test(char* C) {4  // CHECK: getelementptr5  return C-1;   // Should turn into a GEP6}7 8int *test2(int* I) {9  return I-1;10}11