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.

llvm-svn: 230939

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

index 4eb6d78..b6eaf6f 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/llvm/test/Assembler/invalid-datalayout22.ll b/llvm/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
+