[CodeGen] add tests for abs builtins; NFC
authorSanjay Patel <spatel@rotateright.com>
Tue, 22 May 2018 15:11:59 +0000 (15:11 +0000)
committerSanjay Patel <spatel@rotateright.com>
Tue, 22 May 2018 15:11:59 +0000 (15:11 +0000)
llvm-svn: 332988

clang/test/CodeGen/builtin-abs.c [new file with mode: 0644]

diff --git a/clang/test/CodeGen/builtin-abs.c b/clang/test/CodeGen/builtin-abs.c
new file mode 100644 (file)
index 0000000..b68d465
--- /dev/null
@@ -0,0 +1,29 @@
+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm %s -o - | FileCheck %s
+
+int absi(int x) {
+// CHECK-LABEL: @absi(
+// CHECK:   [[NEG:%.*]] = sub i32 0, [[X:%.*]]
+// CHECK:   [[CMP:%.*]] = icmp sge i32 [[X]], 0
+// CHECK:   [[SEL:%.*]] = select i1 [[CMP]], i32 [[X]], i32 [[NEG]]
+//
+  return __builtin_abs(x);
+}
+
+long absl(long x) {
+// CHECK-LABEL: @absl(
+// CHECK:   [[NEG:%.*]] = sub i64 0, [[X:%.*]]
+// CHECK:   [[CMP:%.*]] = icmp sge i64 [[X]], 0
+// CHECK:   [[SEL:%.*]] = select i1 [[CMP]], i64 [[X]], i64 [[NEG]]
+//
+  return __builtin_labs(x);
+}
+
+long long absll(long long x) {
+// CHECK-LABEL: @absll(
+// CHECK:   [[NEG:%.*]] = sub i64 0, [[X:%.*]]
+// CHECK:   [[CMP:%.*]] = icmp sge i64 [[X]], 0
+// CHECK:   [[SEL:%.*]] = select i1 [[CMP]], i64 [[X]], i64 [[NEG]]
+//
+  return __builtin_llabs(x);
+}
+