diff options
Diffstat (limited to 'test/CodeGen/X86/dllimport-x86_64.ll')
-rw-r--r-- | test/CodeGen/X86/dllimport-x86_64.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/dllimport-x86_64.ll b/test/CodeGen/X86/dllimport-x86_64.ll index 839bca4..af15a86 100644 --- a/test/CodeGen/X86/dllimport-x86_64.ll +++ b/test/CodeGen/X86/dllimport-x86_64.ll @@ -35,13 +35,13 @@ define void @use() nounwind { ; available_externally uses go away ; OPT-NOT: call void @inline1() ; OPT-NOT: call void @inline2() -; OPT-NOT: load i32* @Var2 +; OPT-NOT: load i32, i32* @Var2 ; OPT: call void (...)* @dummy(i32 %1, i32 1) ; CHECK-DAG: movq __imp_Var1(%rip), [[R1:%[a-z]{3}]] ; CHECK-DAG: movq __imp_Var2(%rip), [[R2:%[a-z]{3}]] - %1 = load i32* @Var1 - %2 = load i32* @Var2 + %1 = load i32, i32* @Var1 + %2 = load i32, i32* @Var2 call void(...)* @dummy(i32 %1, i32 %2) ret void |