summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/builtins.cpp
blob: 8d670fe8a3adaa0135e30a46d0fe70c929c3c928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -o - %s | FileCheck %s

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

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

struct S;
// CHECK: define {{.*}} @_Z9addressofbR1SS0_(
S *addressof(bool b, S &s, S &t) {
  // CHECK: %[[LVALUE:.*]] = phi
  // CHECK: ret {{.*}}* %[[LVALUE]]
  return __builtin_addressof(b ? s : t);
}

extern "C" int __builtin_abs(int); // #1
long __builtin_abs(long);          // #2
extern "C" int __builtin_abs(int); // #3

int x = __builtin_abs(-2);
// CHECK: entry:
// CHECK-NEXT:  store i32 2, i32* @x, align 4

long y = __builtin_abs(-2l);
// CHECK: entry:
// CHECK-NEXT:  %call = call i64 @_Z13__builtin_absl(i64 -2)
OpenPOWER on IntegriCloud