aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Driver/ppc-pcrel.cpp
blob: 2b12f0de9280e7fbcd8327cd08abb89723259ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -mcpu=pwr10 -mpcrel -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-PCREL %s
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -mcpu=pwr10 -mno-pcrel -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOPCREL %s
// CHECK-NOPCREL: "-target-feature" "-pcrel"
// CHECK-PCREL: "-target-feature" "+pcrel"

// RUN: %clang -target powerpc64-unknown-linux-gnu -mcpu=pwr10 -emit-llvm -S %s -o - | grep "attributes.*+pcrelative-memops"
// RUN: %clang -target powerpc64-unknown-linux-gnu -mcpu=pwr10 -mpcrel -emit-llvm -S %s -o - | grep "attributes.*+pcrelative-memops"
// RUN: %clang -target powerpc64-unknown-linux-gnu -mcpu=pwr10 -mno-pcrel -emit-llvm -S %s -o - | grep "attributes.*\-pcrelative-memops"

int main(int argc, char *argv[]) {
  return 0;
}