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.

llvm-svn: 291208
This commit is contained in:
Saleem Abdulrasool 2017-01-06 02:27:40 +00:00
parent 37df90a474
commit 3f4ab5c0c6
3 changed files with 0 additions and 13 deletions

View File

@ -1 +0,0 @@
FUNCTION = 1

View File

@ -1 +0,0 @@
MODULE = 1

View File

@ -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