summaryrefslogtreecommitdiff
path: root/test/CodeGen/avr
diff options
context:
space:
mode:
authorDiana Picus <diana.picus@linaro.org>2017-02-06 11:35:42 +0000
committerDiana Picus <diana.picus@linaro.org>2017-02-06 11:35:42 +0000
commit7be363f831bf638aa115cfebd6f700e14d47a537 (patch)
tree8d7d8b3ac957436ee0681b3766ccf1605b3b1dfc /test/CodeGen/avr
parent8d572b55e545845a7a819d8be827354581f3e840 (diff)
downloadclang-7be363f831bf638aa115cfebd6f700e14d47a537.tar.gz
Revert "[AVR] Allow specifying the CPU on the command line"
This reverts commit r294177. It seems to have broken some buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@294180 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/avr')
-rw-r--r--test/CodeGen/avr/target-cpu-defines/atmega328p.c6
-rw-r--r--test/CodeGen/avr/target-cpu-defines/attiny104.c6
-rw-r--r--test/CodeGen/avr/target-cpu-defines/common.c5
3 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/avr/target-cpu-defines/atmega328p.c b/test/CodeGen/avr/target-cpu-defines/atmega328p.c
deleted file mode 100644
index 9918abef7f..0000000000
--- a/test/CodeGen/avr/target-cpu-defines/atmega328p.c
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: %clang_cc1 -E -dM -triple avr-unknown-unknown -target-cpu atmega328p /dev/null | FileCheck -match-full-lines %s
-
-// CHECK: #define AVR 1
-// CHECK: #define __AVR 1
-// CHECK: #define __AVR_ATmega328P 1
-// CHECK: #define __AVR__ 1
diff --git a/test/CodeGen/avr/target-cpu-defines/attiny104.c b/test/CodeGen/avr/target-cpu-defines/attiny104.c
deleted file mode 100644
index 3563108071..0000000000
--- a/test/CodeGen/avr/target-cpu-defines/attiny104.c
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: %clang_cc1 -E -dM -triple avr-unknown-unknown -target-cpu attiny104 /dev/null | FileCheck -match-full-lines %s
-
-// CHECK: #define AVR 1
-// CHECK: #define __AVR 1
-// CHECK: #define __AVR_ATtiny104 1
-// CHECK: #define __AVR__ 1
diff --git a/test/CodeGen/avr/target-cpu-defines/common.c b/test/CodeGen/avr/target-cpu-defines/common.c
deleted file mode 100644
index 0cf4d30d5e..0000000000
--- a/test/CodeGen/avr/target-cpu-defines/common.c
+++ /dev/null
@@ -1,5 +0,0 @@
-// RUN: %clang_cc1 -E -dM -triple avr-unknown-unknown /dev/null | FileCheck -match-full-lines %s
-
-// CHECK: #define AVR 1
-// CHECK: #define __AVR 1
-// CHECK: #define __AVR__ 1