diff options
Diffstat (limited to 'test/Assembler/2003-10-04-NotMergingGlobalConstants.ll')
-rw-r--r-- | test/Assembler/2003-10-04-NotMergingGlobalConstants.ll | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll b/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll index 47c40d4..9acea59 100644 --- a/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll +++ b/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll @@ -1,7 +1,6 @@ -; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f +; RUN: llvm-as < %s -o /dev/null -f -%T = type opaque -%X = global %T* null -%Y = global int* null +%T = type i32 +@X = global i32* null ; <i32**> [#uses=0] +@Y = global i32* null ; <i32**> [#uses=0] -%T = type int |