diff --git test/Misc/ast-dump-attr.cpp test/Misc/ast-dump-attr.cpp
index b7d5bdb..f84dd7e 100644
--- test/Misc/ast-dump-attr.cpp
+++ test/Misc/ast-dump-attr.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple x86_64-pc-linux -std=c++11 -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s
+// RUN: %clang_cc1 -std=c++11 -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s
 
 int TestLocation
 __attribute__((unused));
@@ -79,9 +79,9 @@ void TestInt(void) __attribute__((constructor(123)));
 // CHECK:      FunctionDecl{{.*}}TestInt
 // CHECK-NEXT:   ConstructorAttr{{.*}} 123
 
-int TestString __attribute__((alias("alias1")));
+int TestString __attribute__((deprecated("message")));
 // CHECK:      VarDecl{{.*}}TestString
-// CHECK-NEXT:   AliasAttr{{.*}} "alias1"
+// CHECK-NEXT:   DeprecatedAttr{{.*}} "message"
 
 extern struct s1 TestType
 __attribute__((type_tag_for_datatype(ident1,int)));
