forked from OSchip/llvm-project
Tweak test case from r223842 to make it pass on Windows MSVC
We can't mangle __complex yet, and there is no C1 emission. llvm-svn: 223870
This commit is contained in:
parent
1d681aa0ba
commit
60e54da723
|
@ -2,8 +2,8 @@
|
|||
|
||||
int &src();
|
||||
int *sink();
|
||||
__complex float complex_src();
|
||||
__complex float *complex_sink();
|
||||
extern "C" __complex float complex_src();
|
||||
extern "C" __complex float *complex_sink();
|
||||
|
||||
// CHECK-LABEL: define
|
||||
void f1() {
|
||||
|
@ -33,10 +33,7 @@ foo::foo()
|
|||
(complex_src()) {
|
||||
}
|
||||
|
||||
// skip C1
|
||||
// CHECK-LABEL: define
|
||||
|
||||
// CHECK-LABEL: define
|
||||
// CHECK-LABEL: define {{.*}}f2{{.*}}
|
||||
void f2() {
|
||||
#line 300
|
||||
* // CHECK: store float {{.*}} !dbg [[DBG_F2:!.*]]
|
||||
|
|
Loading…
Reference in New Issue