Teach DataLayout that ABI alignments for non-aggregate types must be non-zero.
authorOwen Anderson <resistor@mac.com>
Mon, 2 Mar 2015 09:34:59 +0000 (09:34 +0000)
committerOwen Anderson <resistor@mac.com>
Mon, 2 Mar 2015 09:34:59 +0000 (09:34 +0000)
This manifested as assertions and/or crashes in later phases of optimization,
depending on the build configuration.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230939 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/DataLayout.cpp
test/Assembler/invalid-datalayout22.ll [new file with mode: 0644]

index 4eb6d78d38161f46215e910f3fbea248e90c27ad..b6eaf6f2d99736100fb825dbe15513bc2f1e53ca 100644 (file)
@@ -312,6 +312,9 @@ void DataLayout::parseSpecifier(StringRef Desc) {
             "Missing alignment specification in datalayout string");
       Split = split(Rest, ':');
       unsigned ABIAlign = inBytes(getInt(Tok));
+      if (AlignType != AGGREGATE_ALIGN && !ABIAlign)
+        report_fatal_error(
+            "ABI alignment specification must be >0 for non-aggregate types");
 
       // Preferred alignment.
       unsigned PrefAlign = ABIAlign;
diff --git a/test/Assembler/invalid-datalayout22.ll b/test/Assembler/invalid-datalayout22.ll
new file mode 100644 (file)
index 0000000..14e4c28
--- /dev/null
@@ -0,0 +1,6 @@
+; RUN: not llvm-as < %s 2>&1 | FileCheck %s
+
+target datalayout = "v128:0:128"
+
+; CHECK: ABI alignment specification must be >0 for non-aggregate types
+