]> granicus.if.org Git - clang/commitdiff
CodeGen: address post commit review comments for r291123
authorSaleem Abdulrasool <compnerd@compnerd.org>
Fri, 6 Jan 2017 02:27:40 +0000 (02:27 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Fri, 6 Jan 2017 02:27:40 +0000 (02:27 +0000)
This test would force the execution of the backend.  However, the
backend already has a test for this.  Effectively, this was trying to
test that an API call was made properly.  We do not have a good way to
really test this.  The test itself tested very little.

Addresses post-commit review comments from Eric Christopher.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@291208 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/include/function.x [deleted file]
test/CodeGen/include/module.x [deleted file]
test/CodeGen/inline-asm-inclusion.c [deleted file]

diff --git a/test/CodeGen/include/function.x b/test/CodeGen/include/function.x
deleted file mode 100644 (file)
index 77a952a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-FUNCTION = 1
diff --git a/test/CodeGen/include/module.x b/test/CodeGen/include/module.x
deleted file mode 100644 (file)
index eebb19b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-MODULE = 1
diff --git a/test/CodeGen/inline-asm-inclusion.c b/test/CodeGen/inline-asm-inclusion.c
deleted file mode 100644 (file)
index 3416c62..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: %clang_cc1 -triple i686--- -I %p/include -S -o - %s | FileCheck %s
-// REQUIRES: x86-registered-target
-
-__asm__(".include \"module.x\"");
-void function(void) {
-  __asm__(".include \"function.x\"");
-}
-
-// CHECK: MODULE = 1
-// CHECK: FUNCTION = 1
-