forked from OSchip/llvm-project
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:
parent
37df90a474
commit
3f4ab5c0c6
clang/test/CodeGen
|
@ -1 +0,0 @@
|
||||||
FUNCTION = 1
|
|
|
@ -1 +0,0 @@
|
||||||
MODULE = 1
|
|
|
@ -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
|
|
||||||
|
|
Loading…
Reference in New Issue