update alias notation in JS tests
diff --git a/test/CodeGen/JS/aliases.ll b/test/CodeGen/JS/aliases.ll
index f58a1fe..11ebda5 100644
--- a/test/CodeGen/JS/aliases.ll
+++ b/test/CodeGen/JS/aliases.ll
@@ -5,18 +5,18 @@
@.str = private unnamed_addr constant [18 x i8] c"hello, world! %d\0A\00", align 1 ; [#uses=1 type=[18 x i8]*]
-@othername = internal alias void (i32)* @doit
-@othername2 = internal alias void (i32)* @othername
-@othername3 = internal alias void (i32)* @othername2
-@othername4 = internal alias bitcast (void (i32)* @othername2 to void ()*)
+@othername = internal alias void (i32), void (i32)* @doit
+@othername2 = internal alias void (i32), void (i32)* @othername
+@othername3 = internal alias void (i32), void (i32)* @othername2
+@othername4 = internal alias void (), bitcast (void (i32)* @othername2 to void ()*)
@list = global i32 ptrtoint (void ()* @othername4 to i32)
@list2 = global <{ i32, i32, i32, i32, i32 }> <{ i32 ptrtoint (void (i32)* @doit to i32), i32 ptrtoint (void (i32)* @othername to i32), i32 ptrtoint (void (i32)* @othername2 to i32), i32 ptrtoint (void (i32)* @othername3 to i32), i32 ptrtoint (void ()* @othername4 to i32) }>
@value = global i32 17
-@value2 = alias i32* @value
-@value3 = alias i32* @value
+@value2 = alias i32, i32* @value
+@value3 = alias i32, i32* @value
define internal void @doit(i32 %x) {
%call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i32 0, i32 0), i32 %x) ; [#uses=0 type=i32]
diff --git a/test/CodeGen/JS/global-alias.ll b/test/CodeGen/JS/global-alias.ll
index 50de90e..3049216 100644
--- a/test/CodeGen/JS/global-alias.ll
+++ b/test/CodeGen/JS/global-alias.ll
@@ -8,13 +8,13 @@
@pri = internal global [60 x i8] zeroinitializer
@pub = global [60 x i8] zeroinitializer
-@pri_int = internal alias [60 x i8]* @pri
-@pri_wea = weak alias [60 x i8]* @pri
-@pri_nor = alias [60 x i8]* @pri
+@pri_int = internal alias [60 x i8], [60 x i8]* @pri
+@pri_wea = weak alias [60 x i8], [60 x i8]* @pri
+@pri_nor = alias [60 x i8], [60 x i8]* @pri
-@pub_int = internal alias [60 x i8]* @pub
-@pub_wea = weak alias [60 x i8]* @pub
-@pub_nor = alias [60 x i8]* @pub
+@pub_int = internal alias [60 x i8], [60 x i8]* @pub
+@pub_wea = weak alias [60 x i8], [60 x i8]* @pub
+@pub_nor = alias [60 x i8], [60 x i8]* @pub
; CHECK: test0(
; CHECK: return ([[PRI:[0-9]+]]|0);