adjust to changes in the mainline llvm .ll printer.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65745 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/cast-to-union.c b/test/CodeGen/cast-to-union.c
index 2f10d6c..9f0b080 100644
--- a/test/CodeGen/cast-to-union.c
+++ b/test/CodeGen/cast-to-union.c
@@ -1,7 +1,7 @@
 // RUN: clang -emit-llvm < %s -o %t &&
 // RUN: grep "store i32 351, i32*" %t &&
-// RUN: grep "w = global <{ i32, i8, i8, i8, i8 }> <{ i32 2, i8 0, i8 0, i8 0, i8 0 }>" %t &&
-// RUN: grep "y = global <{ double }> <{ double 7.300000e+01 }>" %t
+// RUN: grep "w = global %0 <{ i32 2, i8 0, i8 0, i8 0, i8 0 }>" %t &&
+// RUN: grep "y = global %1 <{ double 7.300000e+01 }>" %t
 
 union u { int i; double d; };