From: Saleem Abdulrasool Date: Fri, 6 Jan 2017 02:27:40 +0000 (+0000) Subject: CodeGen: address post commit review comments for r291123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b9db7fa41a1905899dbcbcc6cbdd05d2511da8e;p=clang CodeGen: address post commit review comments for r291123 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 --- diff --git a/test/CodeGen/include/function.x b/test/CodeGen/include/function.x deleted file mode 100644 index 77a952ad73..0000000000 --- a/test/CodeGen/include/function.x +++ /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 index eebb19bb1b..0000000000 --- a/test/CodeGen/include/module.x +++ /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 index 3416c62b52..0000000000 --- a/test/CodeGen/inline-asm-inclusion.c +++ /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 -