| 12
 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
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 
 | // REQUIRES: powerpc-registered-target
// RUN: %clang_cc1 -target-feature +altivec -target-feature +htm -triple powerpc64-unknown-unknown -emit-llvm %s -o - | FileCheck %s
// RUN: not %clang_cc1 -target-feature +altivec -target-feature -htm -triple powerpc64-unknown-unknown -emit-llvm %s 2>&1 | FileCheck %s --check-prefix=ERROR
void test1(long int *r, int code, long int *a, long int *b) {
// CHECK-LABEL: define{{.*}} void @test1
  r[0] = __builtin_tbegin (0);
// CHECK: @llvm.ppc.tbegin
// ERROR: error: this builtin requires HTM to be enabled
  r[1] = __builtin_tbegin (1);
// CHECK: @llvm.ppc.tbegin
// ERROR: error: this builtin requires HTM to be enabled
  r[2] = __builtin_tend (0);
// CHECK: @llvm.ppc.tend
// ERROR: error: this builtin requires HTM to be enabled
  r[3] = __builtin_tendall ();
// CHECK: @llvm.ppc.tendall
// ERROR: error: this builtin requires HTM to be enabled
  r[4] = __builtin_tabort (code);
// CHECK: @llvm.ppc.tabort
// ERROR: error: this builtin requires HTM to be enabled
  r[5] = __builtin_tabort (0x1);
// CHECK: @llvm.ppc.tabort
// ERROR: error: this builtin requires HTM to be enabled
  r[6] = __builtin_tabortdc (0xf, a[0], b[0]);
// CHECK: @llvm.ppc.tabortdc
// ERROR: error: this builtin requires HTM to be enabled
  r[7] = __builtin_tabortdci (0xf, a[1], 0x1);
// CHECK: @llvm.ppc.tabortdc
// ERROR: error: this builtin requires HTM to be enabled
  r[8] = __builtin_tabortwc (0xf, a[2], b[2]);
// CHECK: @llvm.ppc.tabortwc
// ERROR: error: this builtin requires HTM to be enabled
  r[9] = __builtin_tabortwci (0xf, a[3], 0x1);
// CHECK: @llvm.ppc.tabortwc
// ERROR: error: this builtin requires HTM to be enabled
  r[10] = __builtin_tcheck ();
// CHECK: @llvm.ppc.tcheck
// ERROR: error: this builtin requires HTM to be enabled
  r[11] = __builtin_trechkpt ();
// CHECK: @llvm.ppc.trechkpt
// ERROR: error: this builtin requires HTM to be enabled
  r[12] = __builtin_treclaim (0);
// CHECK: @llvm.ppc.treclaim
// ERROR: error: this builtin requires HTM to be enabled
  r[13] = __builtin_tresume ();
// CHECK: @llvm.ppc.tresume
// ERROR: error: this builtin requires HTM to be enabled
  r[14] = __builtin_tsuspend ();
// CHECK: @llvm.ppc.tsuspend
// ERROR: error: this builtin requires HTM to be enabled
  r[15] = __builtin_tsr (0);
// CHECK: @llvm.ppc.tsr
// ERROR: error: this builtin requires HTM to be enabled
  r[16] = __builtin_ttest ();
// CHECK: @llvm.ppc.ttest
// ERROR: error: this builtin requires HTM to be enabled
  r[17] = __builtin_get_texasr ();
// CHECK: @llvm.ppc.get.texasr
// ERROR: error: this builtin requires HTM to be enabled
  r[18] = __builtin_get_texasru ();
// CHECK: @llvm.ppc.get.texasru
// ERROR: error: this builtin requires HTM to be enabled
  r[19] = __builtin_get_tfhar ();
// CHECK: @llvm.ppc.get.tfhar
// ERROR: error: this builtin requires HTM to be enabled
  r[20] = __builtin_get_tfiar ();
// CHECK: @llvm.ppc.get.tfiar
// ERROR: error: this builtin requires HTM to be enabled
  __builtin_set_texasr (a[21]);
// CHECK: @llvm.ppc.set.texasr
// ERROR: error: this builtin requires HTM to be enabled
  __builtin_set_texasru (a[22]);
// CHECK: @llvm.ppc.set.texasru
// ERROR: error: this builtin requires HTM to be enabled
  __builtin_set_tfhar (a[23]);
// CHECK: @llvm.ppc.set.tfhar
// ERROR: error: this builtin requires HTM to be enabled
  __builtin_set_tfiar (a[24]);
// CHECK: @llvm.ppc.set.tfiar
// ERROR: error: this builtin requires HTM to be enabled
}
 |