[llvm] 0346514 - [llvm] Revert align attr test in test/Bitcode/attribute-3.3.ll
Steven Wu via llvm-commits
llvm-commits at lists.llvm.org
Mon May 24 09:15:52 PDT 2021
Author: Steven Wu
Date: 2021-05-24T09:15:27-07:00
New Revision: 0346514984291cba05f36ad461504ae32ee3c1bf
URL: https://github.com/llvm/llvm-project/commit/0346514984291cba05f36ad461504ae32ee3c1bf
DIFF: https://github.com/llvm/llvm-project/commit/0346514984291cba05f36ad461504ae32ee3c1bf.diff
LOG: [llvm] Revert align attr test in test/Bitcode/attribute-3.3.ll
Revert testcase changed in D87304 now the upgrader can correctly handle
the align attribute in upgrader.
Reviewed By: dexonsmith
Differential Revision: https://reviews.llvm.org/D102880
Added:
Modified:
llvm/test/Bitcode/attributes-3.3.ll
llvm/test/Bitcode/attributes-3.3.ll.bc
Removed:
################################################################################
diff --git a/llvm/test/Bitcode/attributes-3.3.ll b/llvm/test/Bitcode/attributes-3.3.ll
index 72a8982880163..6a645fbaed79d 100644
--- a/llvm/test/Bitcode/attributes-3.3.ll
+++ b/llvm/test/Bitcode/attributes-3.3.ll
@@ -101,8 +101,8 @@ define void @f16() sspreq
ret void;
}
-define void @f17(i8* align 4 %0)
-; CHECK: define void @f17(i8* align 4 %0)
+define void @f17(i8 align 4 %0)
+; CHECK: define void @f17(i8 %0)
{
ret void;
}
diff --git a/llvm/test/Bitcode/attributes-3.3.ll.bc b/llvm/test/Bitcode/attributes-3.3.ll.bc
index f4d07b83127df..5dd71864ea4fb 100644
Binary files a/llvm/test/Bitcode/attributes-3.3.ll.bc and b/llvm/test/Bitcode/attributes-3.3.ll.bc
diff er
More information about the llvm-commits
mailing list